Changeset 30737 in osm for applications/editors/josm/plugins/namemanager/src/org/openstreetmap
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/namemanager/src/org/openstreetmap/josm/plugins/namemanager
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/namemanager/src/org/openstreetmap/josm/plugins/namemanager/countryData/CountryDataMemory.java
r25594 r30737 10 10 public static void instantiateCountryCache() { 11 11 if (countryCache == null) { 12 countryCache = new HashMap< String, Country>();12 countryCache = new HashMap<>(); 13 13 } 14 14 } -
applications/editors/josm/plugins/namemanager/src/org/openstreetmap/josm/plugins/namemanager/dialog/NameManagerDialog.java
r30532 r30737 244 244 public void setCountryComboBox() { 245 245 Set<String> keySetUnsorted = CountryDataMemory.getCountryCache().keySet(); 246 List<String> keySet = new ArrayList< String>(keySetUnsorted);246 List<String> keySet = new ArrayList<>(keySetUnsorted); 247 247 Collections.sort(keySet); 248 248 country.removeAllItems(); -
applications/editors/josm/plugins/namemanager/src/org/openstreetmap/josm/plugins/namemanager/utils/NameManagerUtils.java
r25594 r30737 43 43 44 44 public static List<Way> getWaysInsideSelectedArea(Way areaBorder) { 45 List<Way> waysInsideSelectedArea = new ArrayList< Way>();45 List<Way> waysInsideSelectedArea = new ArrayList<>(); 46 46 if (areaBorder != null) { 47 47 Coordinate topLeftCorner = getTopLeftCorener(areaBorder);
Note:
See TracChangeset
for help on using the changeset viewer.