Commit 7194c60e authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

Android: Remove stack trace in logcat about UiConstants

Change-Id: I21690fe27cb4ea7e256943fe6ffc6ed7e8bb99c1
Reviewed-on: https://chromium-review.googlesource.com/c/1481964
Commit-Queue: Bo <boliu@chromium.org>
Auto-Submit: Andrew Grieve <agrieve@chromium.org>
Reviewed-by: default avatarIan Vollick <vollick@chromium.org>
Reviewed-by: default avatarBo <boliu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#634707}
parent ff566f41
......@@ -4,7 +4,6 @@
package org.chromium.content.browser;
import org.chromium.base.Log;
import org.chromium.base.ThreadUtils;
import org.chromium.base.annotations.CalledByNative;
......@@ -12,7 +11,6 @@ import org.chromium.base.annotations.CalledByNative;
* Platform-provided UI constants.
*/
public class UiConstants {
private static final String TAG = "UiConstants";
private static final String UI_CONSTANTS_INTERNAL =
"org.chromium.content.browser.UiConstantsInternal";
private static UiConstants sInstance;
......@@ -24,7 +22,6 @@ public class UiConstants {
sInstance = (UiConstants) Class.forName(UI_CONSTANTS_INTERNAL).newInstance();
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException
| IllegalArgumentException e) {
Log.w(TAG, "Could not summon UiConstantsInternal", e);
sInstance = new UiConstants();
}
return sInstance;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment