Changeset 10223 in josm for trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java
- Timestamp:
- 2016-05-16T04:05:58+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java
r9935 r10223 91 91 if (provider != null) { 92 92 try { 93 // TODO 94 Field f = provider.getClass().getDeclaredField("connection"); 95 f.setAccessible(true); 93 Field f = provider.getClass().getDeclaredField("connection"); 94 Utils.setObjectsAccessible(f); 96 95 HttpURLConnection con = (HttpURLConnection) f.get(provider); 97 96 if (con != null) {
Note:
See TracChangeset
for help on using the changeset viewer.
