Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fantkolja committed Sep 6, 2024
1 parent db4f180 commit 7c593ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
/node_modules/
/test/
package-lock.json
package-lock.json
.idea
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/migration-guides.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ public boolean onLogin() throws LoginException {
CredentialsCallback cc = new CredentialsCallback();
try {
callbackHandler.handle(new Callback[] { cc });
} catch (IOException | UnsupportedCallbackException e) {
} catch (IOException \| UnsupportedCallbackException e) {
throw new FailedLoginException("Unable to retrieve credentials. " + e.getMessage());
}
Credentials creds = cc.getCredentials();
Expand Down

0 comments on commit 7c593ce

Please sign in to comment.