Changeset 35265 in osm
- Timestamp:
- 2020-01-02T18:03:47+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/org/openstreetmap/josm/plugins/seamapeditor/seamarks/SeaMark.java
r34894 r35265 2703 2703 UndoRedoHandler undoRedo = UndoRedoHandler.getInstance(); 2704 2704 for (String str : node.getKeys().keySet()) { 2705 if ( str.trim().matches("^seamark:\\S+")) {2705 if ((str.trim().matches("^seamark:\\S+")) || (str.trim().matches("^seamark$"))) { 2706 2706 undoRedo.add(new ChangePropertyCommand(node, str, null)); 2707 2707 }
Note:
See TracChangeset
for help on using the changeset viewer.