mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8000227: [obj|type]ArrayKlass::oop_print_on prints one line to tty instead of the provided output stream
Reviewed-by: brutisso, sla, jmasa, coleenp
This commit is contained in:
parent
ddd6138b95
commit
3e967d8f8d
2 changed files with 2 additions and 2 deletions
|
@ -646,7 +646,7 @@ void objArrayKlass::oop_print_on(oop obj, outputStream* st) {
|
|||
}
|
||||
int remaining = oa->length() - print_len;
|
||||
if (remaining > 0) {
|
||||
tty->print_cr(" - <%d more elements, increase MaxElementPrintSize to print>", remaining);
|
||||
st->print_cr(" - <%d more elements, increase MaxElementPrintSize to print>", remaining);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue