Formatting

This commit is contained in:
Roman Inflianskas 2016-05-17 16:45:12 +03:00
parent 17d25971cb
commit 4ad562867e
4 changed files with 8 additions and 10 deletions

View file

@ -50,7 +50,6 @@ public class BinaryMapPoiReaderAdapter {
}
public static class PoiRegion extends BinaryIndexPart {
List<String> categories = new ArrayList<String>();
List<PoiCategory> categoriesType = new ArrayList<PoiCategory>();
List<List<String> > subcategories = new ArrayList<List<String> >();

View file

@ -33,7 +33,6 @@ public class BinaryMapTransportReaderAdapter {
}
public static class TransportIndex extends BinaryIndexPart {
int left = 0;
int right = 0;
int top = 0;

View file

@ -17,7 +17,7 @@ public class City extends MapObject {
private double radius;
private CityType(double radius) {
CityType(double radius) {
this.radius = radius;
}