Changeset 11045 in josm for trunk/src/org/openstreetmap/josm/actions
- Timestamp:
- 2016-09-23T21:13:02+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JumpToAction.java
r10601 r11045 20 20 import org.openstreetmap.josm.data.coor.LatLon; 21 21 import org.openstreetmap.josm.gui.MapView; 22 import org.openstreetmap.josm.gui.dialogs.LatLonDialog;23 22 import org.openstreetmap.josm.gui.widgets.JosmTextField; 24 23 import org.openstreetmap.josm.tools.GBC; … … 148 147 } catch (NumberFormatException ex) { 149 148 try { 150 ll = LatLon Dialog.parseLatLon(lat.getText() + "; " + lon.getText());149 ll = LatLon.parse(lat.getText() + "; " + lon.getText()); 151 150 } catch (IllegalArgumentException ex2) { 152 151 JOptionPane.showMessageDialog(Main.parent,
Note:
See TracChangeset
for help on using the changeset viewer.