Skip to content

Commit 37ce055

Browse files
committed
Remove wherefrom option.
1 parent 9e5b071 commit 37ce055

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

core/src/main/java/ch/cyberduck/core/editor/EditOpenWorker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ public EditOpenWorker(final Host bookmark, final AbstractEditor editor,
7979
this.notification = notification;
8080
final DownloadFilterOptions options = new DownloadFilterOptions(bookmark);
8181
options.quarantine = false;
82-
options.wherefrom = false;
8382
options.open = false;
8483
this.download = new DownloadTransfer(bookmark, file, local, new DownloadDuplicateFilter()) {
8584
@Override

core/src/main/java/ch/cyberduck/core/transfer/download/DownloadFilterOptions.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public final class DownloadFilterOptions {
3030
public boolean segments;
3131
public boolean permissions;
3232
public boolean timestamp;
33-
public boolean wherefrom;
3433
public boolean icon;
3534
public boolean checksum;
3635
/**
@@ -44,7 +43,6 @@ public DownloadFilterOptions(final Host bookmark) {
4443
segments = preferences.getBoolean("queue.download.segments");
4544
permissions = preferences.getBoolean("queue.download.permissions.change");
4645
timestamp = preferences.getBoolean("queue.download.timestamp.change");
47-
wherefrom = preferences.getBoolean("queue.download.wherefrom");
4846
icon = preferences.getBoolean("queue.download.icon.update");
4947
checksum = preferences.getBoolean("queue.download.checksum.calculate");
5048
quarantine = preferences.getBoolean("queue.download.quarantine");
@@ -57,7 +55,6 @@ public String toString() {
5755
sb.append("segments=").append(segments);
5856
sb.append(", permissions=").append(permissions);
5957
sb.append(", timestamp=").append(timestamp);
60-
sb.append(", wherefrom=").append(wherefrom);
6158
sb.append(", icon=").append(icon);
6259
sb.append(", checksum=").append(checksum);
6360
sb.append(", quarantine=").append(quarantine);

defaults/src/main/resources/default.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ queue.download.skip.regex=.*~\\..*|\\.DS_Store|\\.svn|CVS|RCS|SCCS|\\.git|\\.bzr
191191
queue.download.priority.regex=
192192
queue.download.folder=
193193
queue.download.quarantine=true
194-
queue.download.wherefrom=true
195194
# Segmented concurrent downloads
196195
queue.download.segments=true
197196
queue.download.segments.threshold=10485760

0 commit comments

Comments
 (0)