chore(pCloud): rename folder to parent

This commit is contained in:
Manuel Jenny 2021-04-20 13:34:37 +02:00
parent 3cf028ddce
commit fe21e3988d
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18

View File

@ -16,8 +16,8 @@ class PCloudNodeFactory {
return new PCloudFile(parent, name, getNodePath(parent, name), size, Optional.empty());
}
public static PCloudFile file(PCloudFolder folder, String name, Optional<Long> size, String path) {
return new PCloudFile(folder, name, path, size, Optional.empty());
public static PCloudFile file(PCloudFolder parent, String name, Optional<Long> size, String path) {
return new PCloudFile(parent, name, path, size, Optional.empty());
}
public static PCloudFolder folder(PCloudFolder parent, RemoteFolder folder) {