1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

missed index increment

This commit is contained in:
Kevin Glynn 2011-04-18 18:02:57 +02:00
parent 187c6528a9
commit 03cfff361a

View File

@ -138,6 +138,7 @@ namespace Twiglet.CS2J.Translator
int i = 0;
for (Object el : this) {
ret[i] = el;
i++;
}
return ret;
}