Remove bogus assert
This was true during the development of my last change, but not at commit time
Change-Id: I31f2ed7d5e49e110db4de280c587528319f0250a
diff --git a/src/dex_verifier.cc b/src/dex_verifier.cc
index 00b226d..1b4a262 100644
--- a/src/dex_verifier.cc
+++ b/src/dex_verifier.cc
@@ -976,11 +976,8 @@
new_instance_count_(0),
monitor_enter_count_(0) {
CHECK(method != NULL);
- Runtime* runtime = Runtime::Current();
- // We should only be running the verifier at compile time
- CHECK(!runtime->IsStarted());
const DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache();
- ClassLinker* class_linker = runtime->GetClassLinker();
+ ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
dex_file_ = &class_linker->FindDexFile(dex_cache);
code_item_ = dex_file_->GetCodeItem(method->GetCodeItemOffset());
}