fix
This commit is contained in:
parent
9f5ef58e0d
commit
ba8fa3f125
2 changed files with 2 additions and 5 deletions
|
@ -656,12 +656,12 @@ public class BinaryInspector {
|
|||
final List<Street> intersections = t.getIntersectedStreets();
|
||||
|
||||
println(MessageFormat.format("\t\t\t''{0}'' [{1,number,#}], {2,number,#} building(s), {3,number,#} intersections(s)",
|
||||
new Object[]{t.getName(lang), t.getId(), buildings.size(), intersections.size()}));
|
||||
new Object[]{t.getName(verbose.lang), t.getId(), buildings.size(), intersections.size()}));
|
||||
if (buildings != null && !buildings.isEmpty() && verbose.vbuildings) {
|
||||
println("\t\t\t\tBuildings:");
|
||||
for (Building b : buildings) {
|
||||
println(MessageFormat.format("\t\t\t\t{0} [{1,number,#}]",
|
||||
new Object[]{b.getName(lang), b.getId()}));
|
||||
new Object[]{b.getName(verbose.lang), b.getId()}));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1742,9 +1742,6 @@ public class BinaryMapIndexReader {
|
|||
|
||||
|
||||
public static class MapIndex extends BinaryIndexPart {
|
||||
public String getPartName() { return "Map"; }
|
||||
public int getFieldNumber() { return OsmandOdb.OsmAndStructure.MAPINDEX_FIELD_NUMBER; }
|
||||
|
||||
List<MapRoot> roots = new ArrayList<MapRoot>();
|
||||
|
||||
Map<String, Map<String, Integer>> encodingRules = new HashMap<String, Map<String, Integer>>();
|
||||
|
|
Loading…
Reference in a new issue