summaryrefslogtreecommitdiff
path: root/openjdkjvmti/ti_class_definition.cc
diff options
context:
space:
mode:
Diffstat (limited to 'openjdkjvmti/ti_class_definition.cc')
-rw-r--r--openjdkjvmti/ti_class_definition.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/openjdkjvmti/ti_class_definition.cc b/openjdkjvmti/ti_class_definition.cc
index 030ad98d02..895e73450e 100644
--- a/openjdkjvmti/ti_class_definition.cc
+++ b/openjdkjvmti/ti_class_definition.cc
@@ -250,7 +250,6 @@ void ArtClassDefinition::InitWithDex(GetOriginalDexFile get_original,
dequick_size,
PROT_NONE,
/*low_4gb*/ false,
- /*reuse*/ false,
&error);
mmap_name += "-TEMP";
temp_mmap_ = art::MemMap::MapAnonymous(mmap_name.c_str(),
@@ -258,7 +257,6 @@ void ArtClassDefinition::InitWithDex(GetOriginalDexFile get_original,
dequick_size,
PROT_READ | PROT_WRITE,
/*low_4gb*/ false,
- /*reuse*/ false,
&error);
if (UNLIKELY(dex_data_mmap_.IsValid() && temp_mmap_.IsValid())) {
// Need to save the initial dexfile so we don't need to search for it in the fault-handler.