X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/6f189bffe1aece71870676b3413c5ce7eb913308..e8852fa725ccd1adb25c7af1fd1ddf2429f67a8f:/src/eu/alefzero/owncloud/datamodel/OCFile.java diff --git a/src/eu/alefzero/owncloud/datamodel/OCFile.java b/src/eu/alefzero/owncloud/datamodel/OCFile.java index 7284604c..01a1f58f 100644 --- a/src/eu/alefzero/owncloud/datamodel/OCFile.java +++ b/src/eu/alefzero/owncloud/datamodel/OCFile.java @@ -157,20 +157,6 @@ public class OCFile implements Parcelable, Comparable { } /** - * Use this to check if this file is downloading - * - * @return true if it is in a download in progress - */ - public boolean isDownloading() { - if (mLocalPath != null && mLocalPath.length() > 0) { - String savePath = FileDownloader.getSavePath(); - File file = new File(FileDownloader.getTemporalPath() + mLocalPath.substring(savePath.length())); - return (file.exists()); - } - return false; - } - - /** * The path, where the file is stored locally * * @return The local path to the file @@ -387,8 +373,8 @@ public class OCFile implements Parcelable, Comparable { @Override public String toString() { - String asString = "[id=%s, name=%s, mime=%s, downloaded=%s, local=%s, remote=%s]"; - asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDown(), mLocalPath, mRemotePath); + String asString = "[id=%s, name=%s, mime=%s, downloaded=%s, local=%s, remote=%s, parentId=%s, keepInSinc=%s]"; + asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDown(), mLocalPath, mRemotePath, new Long(mParentId), new Boolean(mKeepInSync)); return asString; }