Skip to content

Commit

Permalink
declared newMap on a separate line in PasswordKeyStoreSpi
Browse files Browse the repository at this point in the history
  • Loading branch information
nasonawa committed Sep 26, 2023
1 parent 8da9642 commit 10aa157
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ public void engineSetEntry(final String alias, final KeyStore.Entry entry, final
if (protParam != null) {
throw log.keyCannotBeProtected(alias);
}
HashMap<String, PasswordEntry> map, newMap;
HashMap<String, PasswordEntry> map;
HashMap<String,PasswordEntry> newMap;

do {
map = pwRef.get();
if (map == null) {
Expand Down

0 comments on commit 10aa157

Please sign in to comment.