BinaryInspector: fix section order
This commit is contained in:
parent
38b0578577
commit
cde96e5848
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ public class BinaryInspector {
|
|||
for (City c : cities) {
|
||||
int size = index.preloadStreets(c, null);
|
||||
List<Street> streets = new ArrayList<Street>(c.getStreets());
|
||||
String cityDescription = (j == BinaryMapAddressReaderAdapter.POSTCODES_TYPE ?
|
||||
String cityDescription = (type == BinaryMapAddressReaderAdapter.POSTCODES_TYPE ?
|
||||
MessageFormat.format("\t\t''{0}'' {1,number,#} street(s) size {2,number,#} bytes", c.getName(verbose.lang), streets.size(), size) :
|
||||
MessageFormat.format("\t\t''{0}'' [{1,number,#}], {2,number,#} street(s) size {3,number,#} bytes", c.getName(verbose.lang), c.getId(), streets.size(), size));
|
||||
print(cityDescription);
|
||||
|
|
Loading…
Reference in a new issue