Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3472701f authored by vince-bourgmayer's avatar vince-bourgmayer
Browse files

remove a logcat entry for method which return file name from path

parent 006f82a2
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -132,7 +132,6 @@ public abstract class CommonUtils {
     * @return String, the last part after separator of path or null if invalid path has been provided
     */
    public static String getFileNameFromPath(String path) {
        Log.i(TAG, "getFileNameFromPath("+path+")");
        try{
            String[] splittedString = path.split(FileUtils.PATH_SEPARATOR);
            return splittedString[splittedString.length - 1];