mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 09:34:38 +02:00
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:
parent
4fe37df932
commit
794d864feb
12 changed files with 27 additions and 42 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue