Changeset 20872 in osm for applications/editors/josm/plugins/public_transport/src
- Timestamp:
- 2010-04-09T15:29:54+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/src/public_transport/TrackSuggestStopsCommand.java
r20839 r20872 48 48 public boolean executeCommand() 49 49 { 50 if (stoplistTM == null) 51 return false; 50 52 tableDataModel = (Vector< Vector< Object > >)stoplistTM.getDataVector() 51 53 .clone(); … … 168 170 public void undoCommand() 169 171 { 172 if (stoplistTM == null) 173 return; 170 174 for (int i = 0; i < stoplistTM.getNodes().size(); ++i) 171 175 {
Note:
See TracChangeset
for help on using the changeset viewer.