提交 70cc1db3 编写于 作者: S stefank

8000227: [obj|type]ArrayKlass::oop_print_on prints one line to tty instead of...

8000227: [obj|type]ArrayKlass::oop_print_on prints one line to tty instead of the provided output stream
Reviewed-by: brutisso, sla, jmasa, coleenp
上级 f3189d6e
...@@ -646,7 +646,7 @@ void objArrayKlass::oop_print_on(oop obj, outputStream* st) { ...@@ -646,7 +646,7 @@ void objArrayKlass::oop_print_on(oop obj, outputStream* st) {
} }
int remaining = oa->length() - print_len; int remaining = oa->length() - print_len;
if (remaining > 0) { 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);
} }
} }
......
...@@ -381,7 +381,7 @@ void typeArrayKlass::oop_print_on(oop obj, outputStream* st) { ...@@ -381,7 +381,7 @@ void typeArrayKlass::oop_print_on(oop obj, outputStream* st) {
} }
int remaining = ta->length() - print_len; int remaining = ta->length() - print_len;
if (remaining > 0) { 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);
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册