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

Commit c7f9f765 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

am 189d2785: Merge "Frameworks/base: Fix comment"

* commit '189d2785':
  Frameworks/base: Fix comment
parents f7be8b67 189d2785
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -267,11 +267,11 @@ public class ZygoteInit {
                    if (false) {
                        Log.v(TAG, "Preloading " + line + "...");
                    }
                    // Load and explicitly initialize the given class. Use the tree-argument version
                    // of forName to avoid repeated stack lookups (to derive the caller's
                    // class-loader). Use true to force initialization, and null for the boot
                    // classpath class-loader (could as well cache the class-loader of this class in
                    // a variable).
                    // Load and explicitly initialize the given class. Use
                    // Class.forName(String, boolean, ClassLoader) to avoid repeated stack lookups
                    // (to derive the caller's class-loader). Use true to force initialization, and
                    // null for the boot classpath class-loader (could as well cache the
                    // class-loader of this class in a variable).
                    Class.forName(line, true, null);
                    count++;
                } catch (ClassNotFoundException e) {