Changeset 32226 in osm
- Timestamp:
- 2016-06-09T00:05:00+02:00 (8 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/PTAssistantPlugin.java
r32221 r32226 5 5 import org.openstreetmap.josm.plugins.Plugin; 6 6 import org.openstreetmap.josm.plugins.PluginInformation; 7 import org.openstreetmap.josm.plugins.pt_assistant.validation.DirectionTest; 7 8 import org.openstreetmap.josm.plugins.pt_assistant.validation.GapTest; 8 9 import org.openstreetmap.josm.plugins.pt_assistant.validation.PlatformsFirstTest; … … 29 30 OsmValidator.addTest(PlatformsFirstTest.class); 30 31 OsmValidator.addTest(RoadTypeTest.class); 32 OsmValidator.addTest(DirectionTest.class); 31 33 OsmValidator.addTest(GapTest.class); 32 34 -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/GapTest.java
r32222 r32226 98 98 } 99 99 } 100 101 100 102 101 103 return false; -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/RoadTypeTest.java
r32222 r32226 155 155 156 156 157 return new SequenceCommand(tr("Remove way from route if it does not match the route type"), commands); } 157 return new SequenceCommand(tr("Remove way from route if it does not match the route type"), commands); 158 159 } 158 160 159 161 /**
Note:
See TracChangeset
for help on using the changeset viewer.