Browse Source

fix spotbugs

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky 4 years ago
parent
commit
86d1a2820f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/owncloud/android/datamodel/OCFile.java

+ 1 - 1
src/main/java/com/owncloud/android/datamodel/OCFile.java

@@ -125,7 +125,7 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
     @VisibleForTesting
     public OCFile(String path, String remoteId) {
         this(path);
-        setRemoteId(remoteId);
+        this.remoteId = remoteId;
     }
 
     /**