Merge "Don't break error string (easier grepping)" into mnc-ub-dev

This commit is contained in:
Deepanshu Gupta
2015-09-30 22:16:22 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}