Skip to content

Commit 8cf919c

Browse files
committed
Revert "Auto configure bookmark after username input."
This reverts commit 16794f0.
1 parent 8bdb6d6 commit 8cf919c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

osx/src/main/java/ch/cyberduck/ui/cocoa/controller/BookmarkController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,6 @@ public void change(final Host bookmark) {
378378
@Action
379379
public void usernameFieldTextDidEndEditing(final NSNotification sender) {
380380
bookmark.getCredentials().setUsername(StringUtils.trim(usernameField.stringValue()));
381-
bookmark.setCredentials(CredentialsConfiguratorFactory.get(bookmark.getProtocol()).configure(bookmark));
382381
this.update();
383382
}
384383

windows/src/main/csharp/ch/cyberduck/ui/controller/BookmarkController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,6 @@ internal void View_ChangedServerEvent()
228228
internal void View_ChangedUsernameEvent()
229229
{
230230
_host.getCredentials().setUsername(View.Username);
231-
_host.setCredentials(CredentialsConfiguratorFactory.get(_host.getProtocol()).configure(_host));
232231
ItemChanged();
233232
Update();
234233
}

0 commit comments

Comments
 (0)