Changeset 9977 in josm
- Timestamp:
- 2016-03-13T00:43:51+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/ImageryLayerInfo.java
r9610 r9977 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.imagery; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 3 5 4 6 import java.io.IOException; … … 25 27 import org.xml.sax.SAXException; 26 28 27 import static org.openstreetmap.josm.tools.I18n.tr;28 29 29 /** 30 30 * Manages the list of imagery entries that are shown in the imagery menu. … … 113 113 private final boolean fastFail; 114 114 private final List<ImageryInfo> newLayers = new ArrayList<>(); 115 private transientImageryReader reader;116 private transientboolean canceled;115 private ImageryReader reader; 116 private boolean canceled; 117 117 118 118 DefaultEntryLoader(boolean clearCache, boolean fastFail) { -
trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java
r9483 r9977 191 191 192 192 private static class Updater { 193 private final transientHistoryBrowserModel model;193 private final HistoryBrowserModel model; 194 194 private final PointInTimeType role; 195 195 -
trunk/src/org/openstreetmap/josm/gui/preferences/SourceEditor.java
r9965 r9977 1343 1343 private final String url; 1344 1344 private final List<SourceProvider> sourceProviders; 1345 private transientCachedFile cachedFile;1346 private transientboolean canceled;1345 private CachedFile cachedFile; 1346 private boolean canceled; 1347 1347 private final List<ExtendedSourceEntry> sources = new ArrayList<>(); 1348 1348 -
trunk/src/org/openstreetmap/josm/io/CachedFile.java
r9645 r9977 69 69 protected CachingStrategy cachingStrategy; 70 70 71 private transientboolean fastFail;72 private transientHttpClient activeConnection;71 private boolean fastFail; 72 private HttpClient activeConnection; 73 73 protected File cacheFile; 74 74 protected boolean initialized; -
trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java
r9777 r9977 33 33 34 34 private final String source; 35 private transientCachedFile cachedFile;36 private transientboolean fastFail;35 private CachedFile cachedFile; 36 private boolean fastFail; 37 37 38 38 private enum State { -
trunk/src/org/openstreetmap/josm/tools/HttpClient.java
r9949 r9977 50 50 private boolean useCache; 51 51 private String reasonForRequest; 52 private transientHttpURLConnection connection; // to allow disconnecting before `response` is set53 private transientResponse response;52 private HttpURLConnection connection; // to allow disconnecting before `response` is set 53 private Response response; 54 54 55 55 static {
Note:
See TracChangeset
for help on using the changeset viewer.