DO NOT MERGE - Remove Log statement from FileUtils

Change-Id: I3e2031bcf0cbdf79994b99b9473572eb3e62734d
This commit is contained in:
Mohammadinamul Sheik 2015-05-04 16:00:47 -07:00
parent 9bad1ac33f
commit 3b0d5b75bd

View File

@ -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);
}
}