Merge branch 'master' into development
This commit is contained in:
commit
625fbe7d81
|
@ -51,8 +51,9 @@ public class XmlReader {
|
|||
|
||||
public Tag readTag() throws XmlPullParserException, IOException {
|
||||
if (wakeLock.isHeld()) {
|
||||
wakeLock.release(); //release wake look while waiting on next parser event
|
||||
wakeLock.release();
|
||||
}
|
||||
try {
|
||||
while(parser.next() != XmlPullParser.END_DOCUMENT) {
|
||||
wakeLock.acquire();
|
||||
if (parser.getEventType() == XmlPullParser.START_TAG) {
|
||||
|
@ -76,7 +77,10 @@ public class XmlReader {
|
|||
if (wakeLock.isHeld()) {
|
||||
wakeLock.release();
|
||||
}
|
||||
return null; //end document;
|
||||
} catch (ArrayIndexOutOfBoundsException e) {
|
||||
throw new IOException("xml parser mishandled ArrayIndexOufOfBounds", e);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public Element readElement(Tag currentTag) throws XmlPullParserException, IOException {
|
||||
|
|
Loading…
Reference in a new issue