Changeset 3513 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2010-09-04T15:52:04+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/auth/JosmPreferencesCredentialManager.java
r3344 r3513 85 85 /* 86 86 * Last request was successful and there was no credentials stored 87 * in file. -> Try to recall credentials that have been entered 87 * in file (or only the username is stored). 88 * -> Try to recall credentials that have been entered 88 89 * manually in this session. 89 90 */ 90 if (!noSuccessWithLastResponse && credentials == null && memoryCredentialsCache.containsKey(requestorType)) { 91 if (!noSuccessWithLastResponse && memoryCredentialsCache.containsKey(requestorType) && 92 (credentials == null || credentials.getPassword() == null || credentials.getPassword().length == 0)) { 91 93 PasswordAuthentication pa = memoryCredentialsCache.get(requestorType); 92 94 response.setUsername(pa.getUserName());
Note:
See TracChangeset
for help on using the changeset viewer.