summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-03-04 16:36:36 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-04 16:36:36 +0000
commit2fece5941f12395a94e742313e7059a9e419994d (patch)
tree06fda58d44bd5c91e618ab960b77423ddd304d7c /runtime/runtime.cc
parentf8b64c6c452b2ee1c90052124b0af33264028622 (diff)
parent9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40 (diff)
downloadart-2fece5941f12395a94e742313e7059a9e419994d.zip
art-2fece5941f12395a94e742313e7059a9e419994d.tar.gz
art-2fece5941f12395a94e742313e7059a9e419994d.tar.bz2
Merge "Remove oat file location in the image."
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r--runtime/runtime.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index ae9c983..e80a473 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -335,8 +335,6 @@ jobject CreateSystemClassLoader() {
bool Runtime::Start() {
VLOG(startup) << "Runtime::Start entering";
- CHECK(host_prefix_.empty()) << host_prefix_;
-
// Restore main thread state to kNative as expected by native code.
Thread* self = Thread::Current();
self->TransitionFromRunnableToSuspended(kNative);
@@ -477,7 +475,6 @@ bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
- host_prefix_ = options->host_prefix_;
boot_class_path_string_ = options->boot_class_path_string_;
class_path_string_ = options->class_path_string_;
properties_ = options->properties_;