am 7a9f771f: Merge "Don\'t break error string (easier grepping)" into mnc-ub-dev

* commit '7a9f771fe010c697c6a9fb143f0a26778d440c8c':
  Don't break error string (easier grepping)
This commit is contained in:
Deepanshu Gupta
2015-09-30 22:22:09 +00:00
committed by Android Git Automerger

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