Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit a5f7d6b

Browse files
committed
Change the order of method so that add methods are in order
1 parent aa26795 commit a5f7d6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/cryptomator/cloudaccess/api/CloudItemList.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ public CloudItemList add(final List<CloudItemMetadata> items, final Optional<Str
3232
final List<CloudItemMetadata> union = Stream.concat(this.items.stream(), items.stream()).collect(Collectors.toList());
3333
return new CloudItemList(union, nextPageToken);
3434
}
35-
36-
public static CloudItemList empty() {
37-
return new CloudItemList(Collections.emptyList());
38-
}
3935

4036
public CloudItemList add(final List<CloudItemMetadata> items) {
4137
return add(items, Optional.empty());
4238
}
39+
40+
public static CloudItemList empty() {
41+
return new CloudItemList(Collections.emptyList());
42+
}
4343

4444
}

0 commit comments

Comments
 (0)