Skip to content

Commit

Permalink
Merge pull request #1980 from nasonawa/ELY-2601
Browse files Browse the repository at this point in the history
[ELY-2601] declared  newMap on a separate line in PasswordKeyStoreSpi
  • Loading branch information
Skyllarr authored Oct 2, 2023
2 parents 69fa3de + 19dfeca commit f173144
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 f173144

Please sign in to comment.