Changeset 26299 in osm for applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap
- Timestamp:
- 2011-07-10T23:22:15+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/JosmSelectionListModel.java
r23571 r26299 213 213 } 214 214 215 public void prim tivesAdded(PrimitivesAddedEvent event) {/* ignored - handled by SelectionChangeListener */}216 public void prim tivesRemoved(PrimitivesRemovedEvent event) {/* ignored - handled by SelectionChangeListener*/}215 public void primitivesAdded(PrimitivesAddedEvent event) {/* ignored - handled by SelectionChangeListener */} 216 public void primitivesRemoved(PrimitivesRemovedEvent event) {/* ignored - handled by SelectionChangeListener*/} 217 217 218 218 /* ------------------------------------------------------------------------ */ -
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/TurnRestrictionEditorModel.java
r24125 r26299 410 410 public void otherDatasetChange(AbstractDatasetChangedEvent event) {/* irrelevant in this context */} 411 411 412 public void prim tivesAdded(PrimitivesAddedEvent event) {/* irrelevant in this context */}413 public void prim tivesRemoved(PrimitivesRemovedEvent event) {412 public void primitivesAdded(PrimitivesAddedEvent event) {/* irrelevant in this context */} 413 public void primitivesRemoved(PrimitivesRemovedEvent event) { 414 414 // relevant for the state of this model but not handled here. When the 415 415 // state of this model is applied to the dataset we check whether the -
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/list/TurnRestrictionsInDatasetListModel.java
r23510 r26299 87 87 } 88 88 89 public void prim tivesAdded(PrimitivesAddedEvent event) {89 public void primitivesAdded(PrimitivesAddedEvent event) { 90 90 List<Relation> turnRestrictions = filterTurnRestrictions(event.getPrimitives()); 91 91 if (!turnRestrictions.isEmpty()) { … … 94 94 } 95 95 96 public void prim tivesRemoved(PrimitivesRemovedEvent event) {96 public void primitivesRemoved(PrimitivesRemovedEvent event) { 97 97 List<Relation> turnRestrictions = filterTurnRestrictions(event.getPrimitives()); 98 98 if (!turnRestrictions.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.