Changeset 7804 in osm for applications/editors/josm/plugins/validator
- Timestamp:
- 2008-05-13T01:39:31+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/ChangePropertyKeyCommand.java
r2591 r7804 48 48 } 49 49 50 @Override public voidexecuteCommand() {51 super.executeCommand(); // save old50 @Override public boolean executeCommand() { 51 if (!super.executeCommand()) return false; // save old 52 52 for (OsmPrimitive osm : objects) { 53 53 if(osm.keys != null) … … 57 57 } 58 58 } 59 return true; 59 60 } 60 61
Note:
See TracChangeset
for help on using the changeset viewer.