Changeset 33321 in osm for applications/editors
- Timestamp:
- 2017-05-17T11:21:32+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java
r33108 r33321 27 27 import org.openstreetmap.josm.data.validation.TestError; 28 28 import org.openstreetmap.josm.data.validation.TestError.Builder; 29 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 29 30 import org.openstreetmap.josm.plugins.pt_assistant.PTAssistantPlugin; 30 31 import org.openstreetmap.josm.plugins.pt_assistant.actions.FixTask; … … 40 41 import org.openstreetmap.josm.plugins.pt_assistant.utils.StopToWayAssigner; 41 42 import org.openstreetmap.josm.plugins.pt_assistant.utils.StopUtils; 42 import org.openstreetmap.josm.tools.Utils;43 43 44 44 public class PTAssistantValidatorTest extends Test { … … 410 410 } 411 411 412 @Override 413 public void startTest(ProgressMonitor progressMonitor) { 414 super.startTest(progressMonitor); 415 416 // reset the static collections in SegmentChecker: 417 SegmentChecker.reset(); 418 } 419 412 420 /** 413 421 * Method is called after all primitives has been visited, overrides the 414 422 * method of the superclass. 415 423 */ 424 @Override 416 425 public void endTest() { 417 426 418 427 // modify the error messages for the stop-by-stop test: 419 428 SegmentChecker.modifyStopByStopErrorMessages(); … … 425 434 this.errors.add(error); 426 435 } 427 428 // reset the static collections in SegmentChecker:429 SegmentChecker.reset();430 436 431 437 super.endTest();
Note:
See TracChangeset
for help on using the changeset viewer.