From 3b0d5b75bd2ca742246947d829aff04c228c94e4 Mon Sep 17 00:00:00 2001 From: Mohammadinamul Sheik Date: Mon, 4 May 2015 16:00:47 -0700 Subject: [PATCH] DO NOT MERGE - Remove Log statement from FileUtils Change-Id: I3e2031bcf0cbdf79994b99b9473572eb3e62734d --- .../com/android/inputmethod/latin/common/FileUtils.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/common/src/com/android/inputmethod/latin/common/FileUtils.java b/common/src/com/android/inputmethod/latin/common/FileUtils.java index 16732660c..e593c9932 100644 --- a/common/src/com/android/inputmethod/latin/common/FileUtils.java +++ b/common/src/com/android/inputmethod/latin/common/FileUtils.java @@ -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); } }