Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

Location:
trunk/src/org/openstreetmap/josm/gui/oauth
Files:
4 edited

Legend:

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

    r10189 r10378  
    9090     * @return the retrieved Access Token
    9191     */
    92     public  OAuthToken getAccessToken() {
     92    public OAuthToken getAccessToken() {
    9393        return accessToken;
    9494    }
  • trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java

    r10369 r10378  
    128128
    129129        // OAuth in a nutshell ...
    130         gc.gridy  = 1;
     130        gc.gridy = 1;
    131131        gc.insets = new Insets(5, 0, 0, 5);
    132132        HtmlPanel pnlMessage = new HtmlPanel();
    133133        pnlMessage.setText("<html><body>"
    134134                + tr("With OAuth you grant JOSM the right to upload map data and GPS tracks "
    135                         + "on your behalf (<a href=\"{0}\">more info...</a>).",  "http://oauth.net/")
     135                        + "on your behalf (<a href=\"{0}\">more info...</a>).", "http://oauth.net/")
    136136                        + "</body></html>"
    137137        );
     
    140140
    141141        // the authorisation procedure
    142         gc.gridy  = 2;
     142        gc.gridy = 2;
    143143        gc.gridwidth = 1;
    144144        gc.weightx = 0.0;
  • trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java

    r10223 r10378  
    362362        } catch (IOException e) {
    363363            throw new OsmOAuthAuthorizationException(e);
    364         }  finally {
     364        } finally {
    365365            synchronized (this) {
    366366                connection = null;
  • trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorizationUI.java

    r10369 r10378  
    400400            );
    401401            executor.execute(task);
    402             Runnable r  = new Runnable() {
     402            Runnable r = new Runnable() {
    403403                @Override
    404404                public void run() {
     
    437437            );
    438438            executor.execute(task);
    439             Runnable r  = new Runnable() {
     439            Runnable r = new Runnable() {
    440440                @Override
    441441                public void run() {
Note: See TracChangeset for help on using the changeset viewer.