From b61eb294f064dd7e8d8ffdccece6f7fa273a6c33 Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Mon, 5 Oct 2015 16:03:09 +0300 Subject: [PATCH] Fix warnings --- .../osmand/plus/download/items/ItemsListBuilder.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/download/items/ItemsListBuilder.java b/OsmAnd/src/net/osmand/plus/download/items/ItemsListBuilder.java index 1d6f516705..0d658161ea 100644 --- a/OsmAnd/src/net/osmand/plus/download/items/ItemsListBuilder.java +++ b/OsmAnd/src/net/osmand/plus/download/items/ItemsListBuilder.java @@ -67,7 +67,7 @@ public class ItemsListBuilder { } } - class ResourceItemComparator implements Comparator { + class ResourceItemComparator implements Comparator { @Override public int compare(Object obj1, Object obj2) { String str1; @@ -100,7 +100,7 @@ public class ItemsListBuilder { private List regionMapItems; - private List allResourceItems; + private List allResourceItems; private List allSubregionItems; private OsmandApplication app; @@ -113,7 +113,7 @@ public class ItemsListBuilder { return regionMapItems; } - public List getAllResourceItems() { + public List getAllResourceItems() { return allResourceItems; } @@ -130,7 +130,7 @@ public class ItemsListBuilder { public ItemsListBuilder(OsmandApplication app) { this.app = app; regionMapItems = new LinkedList<>(); - allResourceItems = new LinkedList(); + allResourceItems = new LinkedList(); allSubregionItems = new LinkedList<>(); } @@ -276,7 +276,7 @@ public class ItemsListBuilder { Map regionResources = resourcesByRegions.get(region); List regionMapArray = new LinkedList<>(); - List allResourcesArray = new LinkedList(); + List allResourcesArray = new LinkedList(); Context context = app.getApplicationContext(); OsmandRegions osmandRegions = app.getRegions();