src/hotspot/share/classfile/verifier.cpp
changeset 54432 532e88de77eb
parent 54347 235883996bc7
child 54786 ebf733a324d4
--- a/src/hotspot/share/classfile/verifier.cpp	Thu Apr 04 17:23:05 2019 -0400
+++ b/src/hotspot/share/classfile/verifier.cpp	Thu Apr 04 09:39:44 2019 +0200
@@ -2060,7 +2060,9 @@
   ss.vprint(msg, va);
   va_end(va);
   if (!_method.is_null()) {
-    ss.print(" in method %s", _method->name_and_sig_as_C_string());
+    ss.print(" in method '");
+    _method->print_external_name(&ss);
+    ss.print("'");
   }
   _message = ss.as_string();
 }