summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-04-21 23:26:41 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-21 23:26:41 +0000
commitc7f9f7656fc8d3538adddab75f6b1fc48387a719 (patch)
treeaca41eb77b7249e396cc506d4999f62b2e05e6c6 /core
parentf7be8b6739f174919ad01dcd32788b1b67c6820a (diff)
parent189d2785c3b71eac9c122c874586501a2ab723b2 (diff)
downloadframeworks_base-c7f9f7656fc8d3538adddab75f6b1fc48387a719.zip
frameworks_base-c7f9f7656fc8d3538adddab75f6b1fc48387a719.tar.gz
frameworks_base-c7f9f7656fc8d3538adddab75f6b1fc48387a719.tar.bz2
am 189d2785: Merge "Frameworks/base: Fix comment"
* commit '189d2785c3b71eac9c122c874586501a2ab723b2': Frameworks/base: Fix comment
Diffstat (limited to 'core')
-rw-r--r--core/java/com/android/internal/os/ZygoteInit.java10
1 files 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 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 @@ 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) {