From 9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Fri, 28 Feb 2014 15:21:07 +0000 Subject: Remove oat file location in the image. The oat file is now always in the same directory, and has the same name as the image file. Only difference is the extension. This also removes the need for host-prefix. Change-Id: I16d1f7aeb1d58372d41921694664e9c321afc1ad --- runtime/runtime.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'runtime/runtime.cc') 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_; -- cgit v1.1