Changeset 36102 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
- Timestamp:
- 2023-07-24T15:55:23+02:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
r33708 r36102 155 155 */ 156 156 // return results 157 if (commandList. size() == 0)157 if (commandList.isEmpty()) { 158 158 return null; 159 if (commandList.size() == 1) 160 return commandList.get(0); 161 return new SequenceCommand(tr("fix associatedStreet relation"), commandList); 159 } 160 return SequenceCommand.wrapIfNeeded(tr("fix associatedStreet relation"), commandList); 162 161 } 163 162 }
Note:
See TracChangeset
for help on using the changeset viewer.
