Changeset 33770 in osm for applications/editors/josm/plugins/public_transport
- Timestamp:
- 2017-11-04T19:16:44+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs/GTFSImporterDialog.java
r33765 r33770 19 19 20 20 public class GTFSImporterDialog extends AbstractImporterDialog<GTFSImporterAction> { 21 private JTable gtfsStopTable = null;21 private final JTable gtfsStopTable = new JTable(); 22 22 23 23 public GTFSImporterDialog(GTFSImporterAction controller) { … … 229 229 controller.getFocusWaypointDeleteAction());*/ 230 230 231 gtfsStopTable = new JTable();232 231 JScrollPane tableSP = new JScrollPane(gtfsStopTable); 233 232 -
applications/editors/josm/plugins/public_transport/src/org/openstreetmap/josm/plugins/public_transport/dialogs/StopImporterDialog.java
r33765 r33770 32 32 private JList<TrackReference> tracksList = null; 33 33 34 private JTable stoplistTable = null;35 36 private JTable waypointTable = null;34 private final JTable stoplistTable = new JTable(); 35 36 private final JTable waypointTable = new JTable(); 37 37 38 38 public StopImporterDialog(StopImporterAction controller) { … … 278 278 controller.getFocusStoplistDeleteAction()); 279 279 280 stoplistTable = new JTable();281 280 JScrollPane tableSP = new JScrollPane(stoplistTable); 282 281 … … 411 410 controller.getFocusWaypointDeleteAction()); 412 411 413 waypointTable = new JTable();414 412 tableSP = new JScrollPane(waypointTable); 415 413
Note:
See TracChangeset
for help on using the changeset viewer.