Changeset 21210 in osm for applications/editors/josm
- Timestamp:
- 2010-05-10T10:03:34+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/reverter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/build.xml
r21207 r21210 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value="Fix #500 1 version should not be set back" />33 <property name="commit.message" value="Fix #5003 ignores any changes that come after the change set that is to be reverted" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 35 <property name="plugin.main.version" value="3000" /> -
applications/editors/josm/plugins/reverter/src/reverter/DataSetToCmd.java
r21207 r21210 68 68 } 69 69 newTarget.mergeFrom(source); 70 newTarget.setOsmId(target.getId(), (int) target.getVersion());70 newTarget.setOsmId(target.getId(), (int)source.getVersion()+1); 71 71 newTarget.setDeleted(false); 72 72 cmds.add(new ChangeCommand(target,newTarget));
Note:
See TracChangeset
for help on using the changeset viewer.