Skip to content

Commit 8bafb53

Browse files
committed
Rename internal method.
1 parent 3dd6f0c commit 8bafb53

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ctera/src/main/java/ch/cyberduck/core/ctera/CteraListService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public CteraListService(final CteraSession session) {
4040
}
4141

4242
@Override
43-
protected List<DavResource> list(final Path directory) throws IOException {
43+
protected List<DavResource> propfind(final Path directory) throws IOException {
4444
return session.getClient().list(new DAVPathEncoder().encode(directory), 1, Collections.unmodifiableSet(Stream.concat(
4545
Stream.of(GUID_QN), ALL_ACL_QN.stream()
4646
).collect(Collectors.toSet())));

nextcloud/src/main/java/ch/cyberduck/core/nextcloud/NextcloudListService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public NextcloudListService(final DAVSession session, final DAVAttributesFinderF
4343
}
4444

4545
@Override
46-
protected List<DavResource> list(final Path directory) throws IOException {
46+
protected List<DavResource> propfind(final Path directory) throws IOException {
4747
return session.getClient().list(new DAVPathEncoder().encode(directory), 1,
4848
Stream.of(
4949
NextcloudAttributesFinderFeature.OC_FILEID_CUSTOM_NAMESPACE,

webdav/src/main/java/ch/cyberduck/core/dav/DAVListService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public DAVListService(final DAVSession session, final DAVAttributesFinderFeature
6161
public AttributedList<Path> list(final Path directory, final ListProgressListener listener) throws BackgroundException {
6262
try {
6363
final AttributedList<Path> children = new AttributedList<>();
64-
final List<DavResource> resources = this.list(directory);
64+
final List<DavResource> resources = this.propfind(directory);
6565
if(resources.isEmpty()) {
6666
listener.chunk(directory, children);
6767
}
@@ -98,7 +98,7 @@ public AttributedList<Path> list(final Path directory, final ListProgressListene
9898
}
9999
}
100100

101-
protected List<DavResource> list(final Path directory) throws IOException {
101+
protected List<DavResource> propfind(final Path directory) throws IOException {
102102
return session.getClient().list(new DAVPathEncoder().encode(directory), 1,
103103
Stream.of(
104104
DAVTimestampFeature.LAST_MODIFIED_CUSTOM_NAMESPACE,

webdav/src/main/java/ch/cyberduck/core/dav/microsoft/MicrosoftIISDAVListService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public MicrosoftIISDAVListService(final DAVSession session, final DAVAttributesF
3636
}
3737

3838
@Override
39-
protected List<DavResource> list(final Path directory) throws IOException {
39+
protected List<DavResource> propfind(final Path directory) throws IOException {
4040
return session.getClient().list(new DAVPathEncoder().encode(directory), 1, true);
4141
}
4242
}

0 commit comments

Comments
 (0)