Changes between Initial Version and Version 1 of Ticket #11333, comment 3
- Timestamp:
- 2018-05-27T00:08:10+02:00 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11333, comment 3
initial v1 1 1 Removing assertion error can help: 2 2 {{{ 3 #!java 3 4 if (ds.getPrimitiveById(osm) != null) 4 throw new AssertionError(String.format("Primitive %s was removed when purging, but is still there on undo", osm));5 throw new AssertionError(String.format("Primitive %s was removed when purging, but is still there on undo", osm)); 5 6 ds.addPrimitive(osm); 6 7 }}} 7 8 replaced to 8 9 {{{ 10 #!java 9 11 if (ds.getPrimitiveById(osm) == null) { 10 12 ds.addPrimitive(osm);


