Changeset 6538 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-12-26T15:19:31+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyCommand.java
r6507 r6538 221 221 return children; 222 222 } 223 224 public Map<String, String> getTags() { 225 return Collections.unmodifiableMap(tags); 226 } 223 227 } -
trunk/src/org/openstreetmap/josm/command/Command.java
r6380 r6538 86 86 */ 87 87 public Command() { 88 this.layer = Main.main .getEditLayer();88 this.layer = Main.main == null ? null : Main.main.getEditLayer(); 89 89 } 90 90
Note:
See TracChangeset
for help on using the changeset viewer.