From cd0bb17d30e360c44e03b33bae3d42114b8cc2fb Mon Sep 17 00:00:00 2001 From: Deepanshu Gupta Date: Thu, 4 Sep 2014 12:54:26 -0700 Subject: [PATCH] Remove warning for null entries in resource array. Change-Id: I32e0b8129e29f3e1e5a472b26e16f3fd06d4b91b --- .../bridge/src/android/content/res/BridgeTypedArray.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/layoutlib/bridge/src/android/content/res/BridgeTypedArray.java b/tools/layoutlib/bridge/src/android/content/res/BridgeTypedArray.java index fbe21a82786c3..aaba5459617b9 100644 --- a/tools/layoutlib/bridge/src/android/content/res/BridgeTypedArray.java +++ b/tools/layoutlib/bridge/src/android/content/res/BridgeTypedArray.java @@ -809,11 +809,6 @@ public final class BridgeTypedArray extends TypedArray { return new CharSequence[] { value }; } - Bridge.getLog().warning(LayoutLog.TAG_RESOURCES_FORMAT, - String.format( - String.format("Unknown value for getTextArray(%d) => %s", //DEBUG - index, mResourceData[index].getName())), null); - return null; }