diff -r ebf733a324d4 -r 33fe50b6d707 src/hotspot/share/oops/metadata.cpp --- a/src/hotspot/share/oops/metadata.cpp Thu May 09 14:28:30 2019 +0200 +++ b/src/hotspot/share/oops/metadata.cpp Fri May 10 09:05:29 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -41,6 +41,9 @@ st->cr(); } +void Metadata::print() const { print_on(tty); } +void Metadata::print_value() const { print_value_on(tty); } + char* Metadata::print_value_string() const { char buf[256]; stringStream st(buf, sizeof(buf));