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

Commit 802527c6 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 20713 into donut

* changes:
  Updated preloaded-classes file.
parents c8ddd37a 2e93f65c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -291,6 +291,15 @@ public class ZygoteInit {
                        } else {
                            missingClasses += " " + line;
                        }
                    } catch (Throwable t) {
                        Log.e(TAG, "Error preloading " + line + ".", t);
                        if (t instanceof Error) {
                            throw (Error) t;
                        }
                        if (t instanceof RuntimeException) {
                            throw (RuntimeException) t;
                        }
                        throw new RuntimeException(t);
                    }
                }

Loading