Small change formater
This commit is contained in:
parent
73ef92c4da
commit
566c609f78
1 changed files with 5 additions and 1 deletions
|
@ -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("] ");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue