Merge "Fix NPE in JobStore when jobs.xml is empty."

This commit is contained in:
Matthew Williams
2015-08-04 17:39:51 +00:00
committed by Gerrit Code Review

View File

@@ -457,7 +457,7 @@ public class JobStore {
while (eventType != XmlPullParser.START_TAG &&
eventType != XmlPullParser.END_DOCUMENT) {
eventType = parser.next();
Slog.d(TAG, parser.getName());
Slog.d(TAG, "Start tag: " + parser.getName());
}
if (eventType == XmlPullParser.END_DOCUMENT) {
if (DEBUG) {