Changeset 6231 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/projection/CodeProjectionChoice.java
- Timestamp:
- 2013-09-11T00:48:32+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/projection/CodeProjectionChoice.java
r5886 r6231 36 36 String code; 37 37 38 /** 39 * Constructs a new {@code CodeProjectionChoice}. 40 */ 38 41 public CodeProjectionChoice() { 39 42 super(tr("By Code (EPSG)"), "core:code"); … … 76 79 int num1 = Integer.parseInt(matcher1.group(2)); 77 80 int num2 = Integer.parseInt(matcher2.group(2)); 78 return new Integer(num1).compareTo(num2);81 return Integer.valueOf(num1).compareTo(num2); 79 82 } else 80 83 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.