Skip to content

Commit 49d941e

Browse files
committed
Merge branch 'endgame-july' into endgame-july.next
2 parents 034d832 + 2f453cf commit 49d941e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij/secure/IdeaSecureStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ public void migratePassword(@Nonnull String oldKeyOrServiceName, @Nullable Strin
5858
if (StringUtils.isBlank(passwordSafe.getPassword(newKey))) {
5959
passwordSafe.setPassword(newKey, passwordSafe.getPassword(oldKey));
6060
}
61-
passwordSafe.set(oldKey, null);
61+
passwordSafe.setPassword(oldKey, null);
6262
}
6363

6464
@Nonnull
65-
private CredentialAttributes makeKey(String serviceName, @Nullable String key, @Nullable String userName) {
65+
private static CredentialAttributes makeKey(String serviceName, @Nullable String key, @Nullable String userName) {
6666
String serverNameWithPrefix = serviceName;
6767
if (!StringUtils.contains(serviceName, "Azure IntelliJ Plugin")) {
6868
serverNameWithPrefix = StringUtils.join("Azure IntelliJ Plugin | " + serviceName);

0 commit comments

Comments
 (0)