am c7f9f765: am 189d2785: Merge "Frameworks/base: Fix comment"
* commit 'c7f9f7656fc8d3538adddab75f6b1fc48387a719':
Frameworks/base: Fix comment
diff --git a/core/java/com/android/internal/os/ZygoteInit.java b/core/java/com/android/internal/os/ZygoteInit.java
index da53995..d44959b 100644
--- a/core/java/com/android/internal/os/ZygoteInit.java
+++ b/core/java/com/android/internal/os/ZygoteInit.java
@@ -267,11 +267,11 @@
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) {