mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 05:05:31 +03:00
Remove unnecessary assingment
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
a5552a635b
commit
b373e249d9
1 changed files with 0 additions and 2 deletions
|
@ -385,7 +385,6 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|||
@Override
|
||||
public String copyDocument(String sourceDocumentId, String targetParentDocumentId) throws FileNotFoundException {
|
||||
Log_OC.d(TAG, "copyDocument(), id=" + sourceDocumentId);
|
||||
isFolderPathValid = true;
|
||||
|
||||
Document targetFolder = toDocument(targetParentDocumentId);
|
||||
|
||||
|
@ -444,7 +443,6 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|||
public String moveDocument(String sourceDocumentId, String sourceParentDocumentId, String targetParentDocumentId)
|
||||
throws FileNotFoundException {
|
||||
Log_OC.d(TAG, "moveDocument(), id=" + sourceDocumentId);
|
||||
isFolderPathValid = true;
|
||||
|
||||
Document targetFolder = toDocument(targetParentDocumentId);
|
||||
|
||||
|
|
Loading…
Reference in a new issue