Changeset 4191 in josm for trunk/src/org/openstreetmap/josm/gui/oauth
- Timestamp:
- 2011-07-01T09:32:56+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/oauth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
r3501 r4191 22 22 import java.beans.PropertyChangeEvent; 23 23 import java.beans.PropertyChangeListener; 24 import java.util.logging.Logger;25 24 26 25 import javax.swing.AbstractAction; … … 55 54 */ 56 55 public class OAuthAuthorizationWizard extends JDialog { 57 @SuppressWarnings("unused")58 static private final Logger logger = Logger.getLogger(OAuthAuthorizationWizard.class.getName());59 60 56 private HtmlPanel pnlMessage; 61 57 private boolean canceled; -
trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java
r4147 r4191 17 17 import java.util.Map; 18 18 import java.util.Map.Entry; 19 import java.util.logging.Logger;20 19 21 20 import oauth.signpost.OAuth; … … 37 36 38 37 public class OsmOAuthAuthorizationClient { 39 @SuppressWarnings("unused")40 static private final Logger logger = Logger.getLogger(OsmOAuthAuthorizationClient.class.getName());41 42 38 private OAuthParameters oauthProviderParameters; 43 39 private OAuthConsumer consumer;
Note:
See TracChangeset
for help on using the changeset viewer.