summaryrefslogtreecommitdiff
path: root/runtime/vdex_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/vdex_file.h')
-rw-r--r--runtime/vdex_file.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/vdex_file.h b/runtime/vdex_file.h
index 35be4fb1ac..3ccbfa5567 100644
--- a/runtime/vdex_file.h
+++ b/runtime/vdex_file.h
@@ -194,7 +194,6 @@ class VdexFile {
const std::string& vdex_filename,
bool writable,
bool low_4gb,
- bool unquicken,
std::string* error_msg);
// Returns nullptr if the vdex file cannot be opened or is not valid.
@@ -207,14 +206,12 @@ class VdexFile {
const std::string& vdex_filename,
bool writable,
bool low_4gb,
- bool unquicken,
std::string* error_msg);
// Returns nullptr if the vdex file cannot be opened or is not valid.
static std::unique_ptr<VdexFile> Open(const std::string& vdex_filename,
bool writable,
bool low_4gb,
- bool unquicken,
std::string* error_msg) {
return OpenAtAddress(nullptr,
0,
@@ -222,7 +219,6 @@ class VdexFile {
vdex_filename,
writable,
low_4gb,
- unquicken,
error_msg);
}
@@ -232,7 +228,6 @@ class VdexFile {
const std::string& vdex_filename,
bool writable,
bool low_4gb,
- bool unquicken,
std::string* error_msg) {
return OpenAtAddress(nullptr,
0,
@@ -242,7 +237,6 @@ class VdexFile {
vdex_filename,
writable,
low_4gb,
- unquicken,
error_msg);
}