summaryrefslogtreecommitdiffstats
path: root/tools/layoutlib
diff options
context:
space:
mode:
authorDeepanshu Gupta <deepanshu@google.com>2015-09-30 22:16:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-09-30 22:16:22 +0000
commit7a9f771fe010c697c6a9fb143f0a26778d440c8c (patch)
treecbaf4ccf8efe1120be4cacb4cabd3ba4957493fa /tools/layoutlib
parentc2fa99edf1591eca47ad678889cfd4924f2470a8 (diff)
parent1bd276f6f7ddce7959dc2e9e6f480d9be1e26fef (diff)
downloadframeworks_base-7a9f771fe010c697c6a9fb143f0a26778d440c8c.zip
frameworks_base-7a9f771fe010c697c6a9fb143f0a26778d440c8c.tar.gz
frameworks_base-7a9f771fe010c697c6a9fb143f0a26778d440c8c.tar.bz2
Merge "Don't break error string (easier grepping)" into mnc-ub-dev
Diffstat (limited to 'tools/layoutlib')
-rw-r--r--tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/LayoutParserWrapper.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/LayoutParserWrapper.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/LayoutParserWrapper.java
index 3d2a238..71e7fd2 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/LayoutParserWrapper.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/LayoutParserWrapper.java
@@ -176,8 +176,7 @@ public class LayoutParserWrapper implements XmlPullParser {
if (mPeeked) {
if (mAttributes == null) {
if (mEventType != START_TAG) {
- throw new IndexOutOfBoundsException("getAttributeValue() called when not at " +
- "START_TAG.");
+ throw new IndexOutOfBoundsException("getAttributeValue() called when not at START_TAG.");
} else {
return null;
}