summaryrefslogtreecommitdiff
path: root/runtime/native/dalvik_system_DexFile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/native/dalvik_system_DexFile.cc')
-rw-r--r--runtime/native/dalvik_system_DexFile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/dalvik_system_DexFile.cc b/runtime/native/dalvik_system_DexFile.cc
index d2b5edf333..8bb8ce8310 100644
--- a/runtime/native/dalvik_system_DexFile.cc
+++ b/runtime/native/dalvik_system_DexFile.cc
@@ -333,7 +333,7 @@ static jstring DexFile_getClassLoaderContext(JNIEnv* env,
constexpr const char* kBaseDir = "";
std::unique_ptr<ClassLoaderContext> context =
ClassLoaderContext::CreateContextForClassLoader(class_loader, dex_elements);
- if (context == nullptr || !context->OpenDexFiles(kRuntimeISA, kBaseDir)) {
+ if (context == nullptr || !context->OpenDexFiles(kBaseDir)) {
LOG(WARNING) << "Could not establish class loader context";
return nullptr;
}