Changeset 8308 in josm for trunk/src/org/openstreetmap/josm/gui/download
- Timestamp:
- 2015-05-02T00:55:19+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/download
- Files:
-
- 2 edited
-
DownloadDialog.java (modified) (1 diff)
-
PlaceSelection.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java
r8215 r8308 70 70 71 71 protected SlippyMapChooser slippyMapChooser; 72 protected final List<DownloadSelection> downloadSelections = new ArrayList<>(); 72 protected final transient List<DownloadSelection> downloadSelections = new ArrayList<>(); 73 73 protected final JTabbedPane tpDownloadAreaSelectors = new JTabbedPane(); 74 74 protected JCheckBox cbNewLayer; 75 75 protected JCheckBox cbStartup; 76 76 protected final JLabel sizeCheck = new JLabel(); 77 protected Bounds currentBounds = null; 77 protected transient Bounds currentBounds = null; 78 78 protected boolean canceled; 79 79 -
trunk/src/org/openstreetmap/josm/gui/download/PlaceSelection.java
r8304 r8308 328 328 private String searchExpression; 329 329 private HttpURLConnection connection; 330 private List<SearchResult> data; 330 private transient List<SearchResult> data; 331 331 private boolean canceled = false; 332 332 private Server useserver; … … 409 409 410 410 static class NamedResultTableModel extends DefaultTableModel { 411 private List<SearchResult> data; 412 private ListSelectionModel selectionModel; 411 private transient List<SearchResult> data; 412 private transient ListSelectionModel selectionModel; 413 413 414 414 public NamedResultTableModel(ListSelectionModel selectionModel) {
Note:
See TracChangeset
for help on using the changeset viewer.
