Ignore:
Timestamp:
2015-04-29T01:44:01+02:00 (9 years ago)
Author:
Don-vip
Message:

fix squid:RedundantThrowsDeclarationCheck + consistent Javadoc for exceptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/ManualAuthorizationUI.java

    r6890 r8291  
    2929import org.openstreetmap.josm.gui.widgets.AbstractTextComponentValidator;
    3030import org.openstreetmap.josm.gui.widgets.HtmlPanel;
     31import org.openstreetmap.josm.gui.widgets.JosmTextField;
    3132import org.openstreetmap.josm.gui.widgets.SelectAllOnFocusGainedDecorator;
    3233import org.openstreetmap.josm.tools.ImageProvider;
    33 import org.openstreetmap.josm.gui.widgets.JosmTextField;
    3434
    3535/**
     
    177177    private static class AccessTokenKeyValidator extends AbstractTextComponentValidator {
    178178
    179         public AccessTokenKeyValidator(JTextComponent tc) throws IllegalArgumentException {
     179        public AccessTokenKeyValidator(JTextComponent tc) {
    180180            super(tc);
    181181        }
     
    197197
    198198    private static class AccessTokenSecretValidator extends AbstractTextComponentValidator {
    199         public AccessTokenSecretValidator(JTextComponent tc) throws IllegalArgumentException {
     199        public AccessTokenSecretValidator(JTextComponent tc) {
    200200            super(tc);
    201201        }
Note: See TracChangeset for help on using the changeset viewer.