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

Commit 037786ad authored by Song Chun Fan's avatar Song Chun Fan Committed by Android (Google) Code Review
Browse files

Merge "[Bugfix]Catch the IllegalArgumentException at the upper layer." into main

parents 05ed3b5a 26a473ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1495,7 +1495,7 @@ public class SettingsState {
            TypedXmlPullParser parser = Xml.resolvePullParser(in);
            parseStateLocked(parser);
            return true;
        } catch (XmlPullParserException | IOException | NumberFormatException e) {
        } catch (XmlPullParserException | IOException | IllegalArgumentException e) {
            Slog.e(LOG_TAG, "parse settings xml failed", e);
            return false;
        } finally {