Ticket #7759: endTest.patch
File endTest.patch, 1.8 KB (added by , 11 years ago) |
---|
-
src/org/openstreetmap/josm/data/validation/Test.java
### Eclipse Workspace Patch 1.0 #P JOSM
119 119 120 120 /** 121 121 * Notification of the end of the test. The tester may perform additional 122 * actions and destroy the used structures 122 * actions and destroy the used structures. 123 * <p> 124 * If you override this method, don't forget to cleanup {@link #progressMonitor} 125 * (most overrides call {@code super.endTest()} to do this). 123 126 */ 124 127 public void endTest() { 125 128 progressMonitor.finishTask(); -
src/org/openstreetmap/josm/data/validation/tests/OverlappingAreas.java
52 52 OVERLAPPING_AREAS, Collections.singletonList(w), overlaps)); 53 53 } 54 54 } 55 56 super.endTest(); 55 57 } 56 58 57 59 } -
src/org/openstreetmap/josm/data/validation/tests/BuildingInBuilding.java
98 98 tr("Building inside building"), BUILDING_INSIDE_BUILDING, p)); 99 99 } 100 100 } 101 102 super.endTest(); 101 103 } 102 104 103 105 private boolean isInInnerWay(Way w, Way outer) {