Skip to content

Commit

Permalink
Remove redundant message.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Nov 5, 2024
1 parent f8297cb commit c7936fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smb/src/main/java/ch/cyberduck/core/smb/SMBSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public void login(final LoginCallback prompt, final CancelCallback cancel) throw
shares = new SMBRootListService(this, prompt, session = client.authenticate(context));
}
catch(SMBRuntimeException e) {
throw new SMBExceptionMappingService().map(LocaleFactory.localizedString("Login failed", "Credentials"), e);
throw new SMBExceptionMappingService().map(e);
}
}

Expand Down

0 comments on commit c7936fa

Please sign in to comment.