Changeset 12620 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
- Timestamp:
- 2017-08-22T22:26:32+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
r12223 r12620 16 16 import javax.swing.JRadioButton; 17 17 18 import org.openstreetmap.josm.Main;19 18 import org.openstreetmap.josm.tools.GBC; 19 import org.openstreetmap.josm.tools.Logging; 20 20 21 21 /** … … 139 139 return Arrays.asList(zonestring, hem.toString()); 140 140 } catch (NumberFormatException e) { 141 Main.warn(e);141 Logging.warn(e); 142 142 } 143 143 } … … 170 170 return Integer.parseInt(zone) - 1; 171 171 } catch (NumberFormatException e) { 172 Main.warn(e);172 Logging.warn(e); 173 173 } 174 174 return defaultIndex;
Note:
See TracChangeset
for help on using the changeset viewer.
