Changeset 8291 in josm for trunk/src/org/openstreetmap/josm/gui/oauth/ManualAuthorizationUI.java
- Timestamp:
- 2015-04-29T01:44:01+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/ManualAuthorizationUI.java
r6890 r8291 29 29 import org.openstreetmap.josm.gui.widgets.AbstractTextComponentValidator; 30 30 import org.openstreetmap.josm.gui.widgets.HtmlPanel; 31 import org.openstreetmap.josm.gui.widgets.JosmTextField; 31 32 import org.openstreetmap.josm.gui.widgets.SelectAllOnFocusGainedDecorator; 32 33 import org.openstreetmap.josm.tools.ImageProvider; 33 import org.openstreetmap.josm.gui.widgets.JosmTextField;34 34 35 35 /** … … 177 177 private static class AccessTokenKeyValidator extends AbstractTextComponentValidator { 178 178 179 public AccessTokenKeyValidator(JTextComponent tc) throws IllegalArgumentException{179 public AccessTokenKeyValidator(JTextComponent tc) { 180 180 super(tc); 181 181 } … … 197 197 198 198 private static class AccessTokenSecretValidator extends AbstractTextComponentValidator { 199 public AccessTokenSecretValidator(JTextComponent tc) throws IllegalArgumentException{199 public AccessTokenSecretValidator(JTextComponent tc) { 200 200 super(tc); 201 201 }
Note:
See TracChangeset
for help on using the changeset viewer.