Changeset 34584 in osm for applications/editors/josm/plugins/terracer/src/org
- Timestamp:
- 2018-08-19T22:04:14+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/terracer/src/org
- Files:
-
- 4 added
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/HouseNumberInputDialog.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/HouseNumberInputHandler.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 282 282 if (e.getSource() instanceof JButton) { 283 283 JButton button = (JButton) e.getSource(); 284 if (tr("OK").equals(button.getActionCommand()) & button.isEnabled()) { 284 if (tr("OK").equals(button.getActionCommand()) && button.isEnabled()) { 285 285 if (validateInput()) { 286 286 saveValues(); -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/ReverseTerraceAction.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerAction.java
r34562 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerPlugin.java
r33579 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 import org.openstreetmap.josm.gui.MainApplication; -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerRuntimeException.java
r33077 r34584 1 1 // License: GPL. For details, see LICENSE file. 2 package terracer; 2 package org.openstreetmap.josm.plugins.terracer; 3 3 4 4 /**
Note:
See TracChangeset
for help on using the changeset viewer.