diff options
| author | 2014-09-04 12:54:26 -0700 | |
|---|---|---|
| committer | 2014-09-04 12:54:26 -0700 | |
| commit | cd0bb17d30e360c44e03b33bae3d42114b8cc2fb (patch) | |
| tree | 9f07212723165c8a74afc2dd68e1665881d3f2cb | |
| parent | f40275d35ec3eaadbd1afd296715215bdd29a09b (diff) | |
Remove warning for null entries in resource array.
Change-Id: I32e0b8129e29f3e1e5a472b26e16f3fd06d4b91b
| -rw-r--r-- | tools/layoutlib/bridge/src/android/content/res/BridgeTypedArray.java | 5 |
1 files changed, 0 insertions, 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 fbe21a82786c..aaba5459617b 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; } |