Ignore:
Timestamp:
2013-07-17T00:01:49+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

Location:
trunk/src/org/openstreetmap/josm/io/auth
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/auth/AbstractCredentialsAgent.java

    r5889 r6070  
    5252                    if (requestorType.equals(RequestorType.PROXY))
    5353                        dialog = CredentialDialog.getHttpProxyCredentialDialog(username, password, host, getSaveUsernameAndPasswordCheckboxText());
    54                     else 
     54                    else
    5555                        dialog = CredentialDialog.getOsmApiCredentialDialog(username, password, host, getSaveUsernameAndPasswordCheckboxText());
    5656                    dialog.setVisible(true);
  • trunk/src/org/openstreetmap/josm/io/auth/CredentialsManager.java

    r5266 r6070  
    1818 */
    1919public class CredentialsManager implements CredentialsAgent {
    20    
     20
    2121    private static CredentialsManager instance;
    2222
     
    3838        return instance;
    3939    }
    40    
     40
    4141    private static CredentialsAgentFactory agentFactory;
    4242
     
    4444        CredentialsAgent getCredentialsAgent();
    4545    }
    46    
     46
    4747    /**
    4848     * Plugins can register a CredentialsAgentFactory, thereby overriding
     
    5959     * non-static fields and methods
    6060     */
    61    
     61
    6262    private CredentialsAgent delegate;
    6363
  • trunk/src/org/openstreetmap/josm/io/auth/JosmPreferencesCredentialAgent.java

    r5863 r6070  
    145145        return pnlMessage;
    146146    }
    147    
     147
    148148    @Override
    149149    public String getSaveUsernameAndPasswordCheckboxText() {
    150150        return tr("Save user and password (unencrypted)");
    151151    }
    152    
     152
    153153}
Note: See TracChangeset for help on using the changeset viewer.