summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDeepanshu Gupta <deepanshu@google.com>2015-09-30 12:49:42 -0700
committerDeepanshu Gupta <deepanshu@google.com>2015-09-30 12:49:42 -0700
commit1bd276f6f7ddce7959dc2e9e6f480d9be1e26fef (patch)
treec16a787ff8d41c61ecad7bfa28256d1f291a77bb /tools
parente91096c03dda225240b1487f019bf3d082854587 (diff)
downloadframeworks_base-1bd276f6f7ddce7959dc2e9e6f480d9be1e26fef.zip
frameworks_base-1bd276f6f7ddce7959dc2e9e6f480d9be1e26fef.tar.gz
frameworks_base-1bd276f6f7ddce7959dc2e9e6f480d9be1e26fef.tar.bz2
Don't break error string (easier grepping)
Change-Id: If52097ba90481644707dd0323ec63ca3ddf0986b
Diffstat (limited to 'tools')
-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;
}