From dd8e5fbe96ecdf95ce8629ca5c6e1d8c520ecff4 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 21 Apr 2015 09:01:51 -0700 Subject: [PATCH] Frameworks/base: Fix comment Fix comment in ZygoteInit. Change-Id: I853581c8d44ee52ee8e113c67ea68621643ecb39 --- core/java/com/android/internal/os/ZygoteInit.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/java/com/android/internal/os/ZygoteInit.java b/core/java/com/android/internal/os/ZygoteInit.java index da53995868e4e..d44959b05d50a 100644 --- a/core/java/com/android/internal/os/ZygoteInit.java +++ b/core/java/com/android/internal/os/ZygoteInit.java @@ -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) {