Loading core/java/com/android/internal/os/ZygoteInit.java +9 −0 Original line number Diff line number Diff line Loading @@ -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 Loading
core/java/com/android/internal/os/ZygoteInit.java +9 −0 Original line number Diff line number Diff line Loading @@ -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