(String desc)
| 238 | } |
| 239 | |
| 240 | private final void exception(String desc) throws XmlPullParserException { |
| 241 | throw new XmlPullParserException( |
| 242 | desc.length() < 100 ? desc : desc.substring(0, 100) + "\n", |
| 243 | this, |
| 244 | null); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * common base for next and nextToken. Clears the state, except from |
no test coverage detected