Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f524a12 authored by Matthew Williams's avatar Matthew Williams Committed by Android Git Automerger
Browse files

am 9f4448eb: am d6ef2313: am 0c53f72e: Merge "Fix NPE in JobStore when jobs.xml is empty."

* commit '9f4448eb':
  Fix NPE in JobStore when jobs.xml is empty.
parents a11ee3c4 9f4448eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {