Fix property crash

This commit is contained in:
Victor Shcherb 2015-05-14 11:25:58 +02:00
parent 06bd71e2c4
commit 8917f6930a

View file

@ -295,8 +295,7 @@ public class RenderingRuleProperty {
}
}
} else {
String ts = val.substring(0, k);
if (ts != null) {
String ts = val;
int[] additionalTypes = obj.getAdditionalTypes();
for (int i = 0; i < additionalTypes.length; i++) {
TagValuePair vp = obj.getMapIndex().decodeType(additionalTypes[i]);
@ -305,7 +304,6 @@ public class RenderingRuleProperty {
}
}
}
}
return false;
}
};