Changeset 8840 in josm for trunk/src/org/openstreetmap/josm/io/OsmConnection.java
- Timestamp:
- 2015-10-09T02:12:45+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmConnection.java
r8510 r8840 12 12 import java.nio.charset.StandardCharsets; 13 13 14 import oauth.signpost.OAuthConsumer;15 import oauth.signpost.exception.OAuthException;16 17 14 import org.openstreetmap.josm.Main; 18 15 import org.openstreetmap.josm.data.oauth.OAuthParameters; … … 23 20 import org.openstreetmap.josm.tools.Base64; 24 21 22 import oauth.signpost.OAuthConsumer; 23 import oauth.signpost.exception.OAuthException; 24 25 25 /** 26 26 * Base class that handles common things like authentication for the reader and writer … … 30 30 */ 31 31 public class OsmConnection { 32 protected boolean cancel = false;32 protected boolean cancel; 33 33 protected HttpURLConnection activeConnection; 34 34 protected OAuthParameters oauthParameters;
Note:
See TracChangeset
for help on using the changeset viewer.
