Removed call to methods to check transfer state of files through binders and replaced...
[pub/Android/ownCloud.git] / src / com / owncloud / android / datamodel / OCFile.java
index cf25d27..e543b44 100644 (file)
@@ -562,4 +562,18 @@ public class OCFile implements Parcelable, Comparable<OCFile> {
         this.mRemoteId = remoteId;
     }
 
+    public boolean isSynchronizing() {
+        // TODO real implementation
+        return false;
+    }
+
+    public boolean isDownloading() {
+        // TODO real implementation
+        return false;
+    }
+
+    public boolean isUploading() {
+        // TODO real implementation
+        return false;
+    }
 }