ART: Move CHECK to DCHECK in FindResolvedMethod

Temporarily unblock non-debug configurations.

Bug: 73549918
Test: mmma art
Change-Id: Idbd7475b749f6d6e5734e72e5f27d8471b883135
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc
index 1648e7d..63d47e6 100644
--- a/runtime/class_linker.cc
+++ b/runtime/class_linker.cc
@@ -7964,7 +7964,7 @@
     // Be a good citizen and update the dex cache to speed subsequent calls.
     dex_cache->SetResolvedMethod(method_idx, resolved, image_pointer_size_);
     const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
-    CHECK(LookupResolvedType(method_id.class_idx_, dex_cache, class_loader) != nullptr)
+    DCHECK(LookupResolvedType(method_id.class_idx_, dex_cache, class_loader) != nullptr)
         << "Method: " << resolved->PrettyMethod() << ", "
         << "Class: " << klass->PrettyClass() << " (" << klass->GetStatus() << "), "
         << "DexFile referrer: " << dex_file.GetLocation();