fixed fileattributes tag reading

This commit is contained in:
Jindra Pet��k
2013-07-08 15:28:18 +02:00
parent d575cb2fbc
commit 7f7c6e0e8f
3 changed files with 8 additions and 2 deletions
@@ -51,7 +51,7 @@ public class SwitchItem extends LoopItem implements Block {
ret += hilight("switch(") + switchedObject.toString(localData) + hilight(")") + "\r\n{\r\n";
for (int i = 0; i < caseCommands.size(); i++) {
for (int k = 0; k < valuesMapping.size(); k++) {
if (valuesMapping.get(k) == i) {
if (valuesMapping.get(k) == i) {
ret += "case " + caseValues.get(k).toString(localData) + ":\r\n";
}
}