Changeset 7005 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
- Timestamp:
- 2014-04-26T17:39:23+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
r6889 r7005 33 33 private Hemisphere hemisphere; 34 34 35 private static final List<String> cbEntries = new ArrayList< String>();35 private static final List<String> cbEntries = new ArrayList<>(); 36 36 static { 37 37 for (int i = 1; i <= 60; i++) { … … 117 117 @Override 118 118 public String[] allCodes() { 119 List<String> projections = new ArrayList< String>(60*4);119 List<String> projections = new ArrayList<>(60*4); 120 120 for (int zone = 1;zone <= 60; zone++) { 121 121 for (Hemisphere hemisphere : Hemisphere.values()) {
Note:
See TracChangeset
for help on using the changeset viewer.