Browse Source

use constant

Signed-off-by: Jens Mueller <tschenser@gmx.de>
Jens Mueller 6 years ago
parent
commit
e6604c8101
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/main/java/com/owncloud/android/datamodel/OCFile.java

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

@@ -199,17 +199,17 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
         if (isEncrypted() && !isFolder()) {
             String parentPath = new File(remotePath).getParent();
 
-            if (parentPath.endsWith("/")) {
+            if (parentPath.endsWith(PATH_SEPARATOR)) {
                 return parentPath + getEncryptedFileName();
             } else {
-                return parentPath + "/" + getEncryptedFileName();
+                return parentPath + PATH_SEPARATOR + getEncryptedFileName();
             }
         } else {
             if (isFolder()) {
-                if (remotePath.endsWith("/")) {
+                if (remotePath.endsWith(PATH_SEPARATOR)) {
                     return remotePath;
                 } else {
-                    return remotePath + "/";
+                    return remotePath + PATH_SEPARATOR;
                 }
             } else {
                 return remotePath;
@@ -412,7 +412,7 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
      */
     public String getParentRemotePath() {
         String parentPath = new File(this.getRemotePath()).getParent();
-        return parentPath.endsWith("/") ? parentPath : parentPath + "/";
+        return parentPath.endsWith(PATH_SEPARATOR) ? parentPath : parentPath + PATH_SEPARATOR;
     }
 
     @Override