7041262: VM_Version should be called instead of Abstract_VM_Version so that overriding works

Change calls to Abstract_VM_Version methods to be calls to VM_Version methods.

Reviewed-by: coleenp, kbarrett, dholmes
This commit is contained in:
Harold Seigel 2018-10-16 11:08:46 -04:00
parent 4fe37df932
commit 794d864feb
12 changed files with 27 additions and 42 deletions

View file

@ -4569,9 +4569,9 @@ void Threads::print_on(outputStream* st, bool print_stacks,
st->print_raw_cr(os::local_time_string(buf, sizeof(buf)));
st->print_cr("Full thread dump %s (%s %s):",
Abstract_VM_Version::vm_name(),
Abstract_VM_Version::vm_release(),
Abstract_VM_Version::vm_info_string());
VM_Version::vm_name(),
VM_Version::vm_release(),
VM_Version::vm_info_string());
st->cr();
#if INCLUDE_SERVICES