Explorar o código

codacy: String.indexOf(char) is faster than String.indexOf(String).

AndyScherzinger %!s(int64=6) %!d(string=hai) anos
pai
achega
1e443545c9

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

@@ -223,7 +223,7 @@ public final class MediaProvider {
 
                         if (filePath != null) {
                             mediaFolder.filePaths.add(filePath);
-                            mediaFolder.absolutePath = filePath.substring(0, filePath.lastIndexOf("/"));
+                            mediaFolder.absolutePath = filePath.substring(0, filePath.lastIndexOf('/'));
                         }
                     }
                     cursorVideos.close();