Changeset 10237 in josm for trunk/src/org
- Timestamp:
- 2016-05-17T02:20:12+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmConnection.java
r9353 r10237 17 17 import java.util.concurrent.FutureTask; 18 18 19 import javax.swing.SwingUtilities; 20 19 21 import org.openstreetmap.josm.Main; 20 22 import org.openstreetmap.josm.data.oauth.OAuthParameters; … … 26 28 import org.openstreetmap.josm.tools.Base64; 27 29 import org.openstreetmap.josm.tools.HttpClient; 30 import org.openstreetmap.josm.tools.Utils; 28 31 29 32 import oauth.signpost.OAuthConsumer; 30 33 import oauth.signpost.exception.OAuthException; 31 import org.openstreetmap.josm.tools.Utils;32 33 import javax.swing.SwingUtilities;34 34 35 35 /** … … 151 151 } 152 152 } catch (MalformedURLException | InterruptedException | InvocationTargetException e) { 153 throw new MissingOAuthAccessTokenException( );153 throw new MissingOAuthAccessTokenException(e); 154 154 } 155 155 }
Note:
See TracChangeset
for help on using the changeset viewer.