-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ELY-2601] declared newMap on a separate line in PasswordKeyStoreSpi #1980
Conversation
Hi @nasonawa |
Hi @PrarthonaPaul |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
Thanks @nasonawa
@@ -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; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nasonawa Justa t total minor, can you please fix the formatting by adding a space before the PasswordEntry
of newMap initialization? Thank you!
Hi @Skyllarr |
@nasonawa Looks great, thank you! |
ELY-2601 newMap on a separate line in PasswordKeyStoreSpi