summaryrefslogtreecommitdiff
path: root/runtime/native/java_lang_VMClassLoader.cc
diff options
context:
space:
mode:
author Calin Juravle <calin@google.com> 2017-07-19 21:12:18 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-07-19 21:12:18 +0000
commite8f48da635c4d07bbe431e5819da8e1fad91a8ef (patch)
tree144e5b35cfc54ec7b745ef71439ba505b13789f3 /runtime/native/java_lang_VMClassLoader.cc
parent187ff4576847ab54db7e2eea6e6a55ccf7d1c40a (diff)
parenta308a327884920cbb1e3e62964c4b5a01c29af8c (diff)
Merge "Change kMultiDexSeparator from ':' to '!'"
Diffstat (limited to 'runtime/native/java_lang_VMClassLoader.cc')
-rw-r--r--runtime/native/java_lang_VMClassLoader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/java_lang_VMClassLoader.cc b/runtime/native/java_lang_VMClassLoader.cc
index 745d09d888..4034e8c837 100644
--- a/runtime/native/java_lang_VMClassLoader.cc
+++ b/runtime/native/java_lang_VMClassLoader.cc
@@ -134,7 +134,7 @@ static jobjectArray VMClassLoader_getBootClassPathEntries(JNIEnv* env, jclass) {
for (size_t i = 0; i < path.size(); ++i) {
const DexFile* dex_file = path[i];
- // For multidex locations, e.g., x.jar:classes2.dex, we want to look into x.jar.
+ // For multidex locations, e.g., x.jar!classes2.dex, we want to look into x.jar.
const std::string& location(dex_file->GetBaseLocation());
ScopedLocalRef<jstring> javaPath(env, env->NewStringUTF(location.c_str()));