We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f8290 commit d53b88cCopy full SHA for d53b88c
core/src/main/java/ch/cyberduck/core/ListService.java
@@ -25,6 +25,10 @@
25
26
@Required
27
public interface ListService {
28
+ default AttributedList<Path> list(Path directory) throws BackgroundException {
29
+ return this.list(directory, new DisabledListProgressListener());
30
+ }
31
+
32
AttributedList<Path> list(Path directory, ListProgressListener listener) throws BackgroundException;
33
34
default void preflight(final Path directory) throws BackgroundException {
0 commit comments