Changeset 30737 in osm for applications/editors/josm/plugins/native-password-manager/src/org
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/native-password-manager/src/org
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/native-password-manager/src/org/netbeans/modules/keyring/fallback/FallbackProvider.java
r26361 r30737 46 46 import java.util.logging.Level; 47 47 import java.util.logging.Logger; 48 import org.netbeans.modules.keyring.impl.Utils;49 48 import org.netbeans.modules.keyring.spi.EncryptionProvider; 50 49 import org.netbeans.spi.keyring.KeyringProvider; -
applications/editors/josm/plugins/native-password-manager/src/org/openstreetmap/josm/plugins/npm/InitializationWizard.java
r27367 r30737 61 61 protected JPanel cardPanel; 62 62 63 List<WizardPanel> panels = new ArrayList< WizardPanel>();63 List<WizardPanel> panels = new ArrayList<>(); 64 64 int panelIndex; 65 65 -
applications/editors/josm/plugins/native-password-manager/src/org/openstreetmap/josm/plugins/npm/NPMCredentialsAgent.java
r30442 r30737 38 38 * In contrast, this cache avoids read request the backend in general. 39 39 */ 40 private Map<RequestorType, PasswordAuthentication> credentialsCache = new HashMap< RequestorType, PasswordAuthentication>();40 private Map<RequestorType, PasswordAuthentication> credentialsCache = new HashMap<>(); 41 41 private OAuthToken oauthCache; 42 42 … … 222 222 + tr("The username and password is protected by {0}.", type.getName()) 223 223 ); 224 List<String> sensitive = new ArrayList< String>();224 List<String> sensitive = new ArrayList<>(); 225 225 if (Main.pref.get("osm-server.username", null) != null) { 226 226 sensitive.add(tr("username"));
Note:
See TracChangeset
for help on using the changeset viewer.