X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/92dc4c568c6157b2fe20b8d13ac5ca679a88f0c7..c3ca5b5a4fda44999f215a3559921a4781f310f8:/src/com/owncloud/android/datamodel/OCFile.java diff --git a/src/com/owncloud/android/datamodel/OCFile.java b/src/com/owncloud/android/datamodel/OCFile.java index 8b079961..da105d93 100644 --- a/src/com/owncloud/android/datamodel/OCFile.java +++ b/src/com/owncloud/android/datamodel/OCFile.java @@ -21,11 +21,10 @@ package com.owncloud.android.datamodel; import java.io.File; -import android.content.Intent; -import android.net.Uri; +import com.owncloud.android.Log_OC; + import android.os.Parcel; import android.os.Parcelable; -import android.util.Log; import android.webkit.MimeTypeMap; public class OCFile implements Parcelable, Comparable { @@ -265,7 +264,7 @@ public class OCFile implements Parcelable, Comparable { * Does nothing if the new name is null, empty or includes "/" ; or if the file is the root directory */ public void setFileName(String name) { - Log.d(TAG, "OCFile name changin from " + mRemotePath); + Log_OC.d(TAG, "OCFile name changin from " + mRemotePath); if (name != null && name.length() > 0 && !name.contains(PATH_SEPARATOR) && !mRemotePath.equals(PATH_SEPARATOR)) { String parent = (new File(getRemotePath())).getParent(); parent = (parent.endsWith(PATH_SEPARATOR)) ? parent : parent + PATH_SEPARATOR; @@ -273,7 +272,7 @@ public class OCFile implements Parcelable, Comparable { if (isDirectory()) { mRemotePath += PATH_SEPARATOR; } - Log.d(TAG, "OCFile name changed to " + mRemotePath); + Log_OC.d(TAG, "OCFile name changed to " + mRemotePath); } }