Changeset 20546 in osm for applications
- Timestamp:
- 2010-03-18T20:43:23+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r20426 r20546 26 26 ** update before publishing 27 27 --> 28 <property name="commit.message" value="validator: fixed josm bug 4594" />28 <property name="commit.message" value="validator: fixed memory leak" /> 29 29 <property name="plugin.main.version" value="3118" /> 30 30 -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidatorDialog.java
r20365 r20546 460 460 private Collection<TestError> testErrors; 461 461 private boolean canceled; 462 private LinkedList<Command> fixCommands;463 464 462 465 463 public FixTask(Collection<TestError> testErrors) { 466 464 super(tr("Fixing errors ..."), false /* don't ignore exceptions */); 467 465 this.testErrors = testErrors == null ? new ArrayList<TestError> (): testErrors; 468 fixCommands = new LinkedList<Command>();469 466 } 470 467 … … 493 490 final Command fixCommand = error.getFix(); 494 491 if (fixCommand != null) { 495 fixCommands.add(fixCommand);496 492 SwingUtilities.invokeAndWait( 497 493 new Runnable() {
Note:
See TracChangeset
for help on using the changeset viewer.