Small change formater

This commit is contained in:
Victor Shcherb 2016-04-26 20:17:24 +02:00
parent 73ef92c4da
commit 566c609f78

View file

@ -579,7 +579,11 @@ public class BinaryInspector {
if (obj.restrictions != null) {
b.append(" restrictions [");
for (int i = 0; i < obj.restrictions.length; i++) {
b.append(obj.getRestrictionId(i)).append(" (").append(obj.getRestrictionType(i)).append(") ").append(",");
if (i > 0) {
b.append(", ");
}
b.append(obj.getRestrictionId(i)).append(" (").append(obj.getRestrictionType(i)).append(") ");
}
b.append("] ");
}