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

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

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

* commit '0c53f72e':
  Fix NPE in JobStore when jobs.xml is empty.
parents b3448bf1 0c53f72e
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) {