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

Commit 3b0d5b75 authored by Mohammadinamul Sheik's avatar Mohammadinamul Sheik
Browse files

DO NOT MERGE - Remove Log statement from FileUtils

Change-Id: I3e2031bcf0cbdf79994b99b9473572eb3e62734d
parent 9bad1ac3
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@

package com.android.inputmethod.latin.common;

import android.util.Log;

import java.io.File;
import java.io.FilenameFilter;

@@ -58,11 +56,6 @@ public class FileUtils {

    public static boolean renameTo(final File fromFile, final File toFile) {
        toFile.delete();
        final boolean success = fromFile.renameTo(toFile);
        if (!success) {
            Log.e(TAG, String.format("Failed to rename from %s to %s.",
                    fromFile.getAbsoluteFile(), toFile.getAbsoluteFile()));
        }
        return  success;
        return fromFile.renameTo(toFile);
    }
}