--- old/src/share/vm/utilities/ostream.cpp 2015-04-14 13:52:04.818581113 +0100 +++ new/src/share/vm/utilities/ostream.cpp 2015-04-14 13:52:04.638599033 +0100 @@ -978,8 +978,11 @@ xs->head("properties"); // Print it as a java-style property list. // System properties don't generally contain newlines, so don't bother with unparsing. + outputStream *text = xs->text(); for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) { - xs->text()->print_cr("%s=%s", p->key(), p->value()); + text->print_raw(p->key()); + text->put('='); + text->print_raw_cr(p->value()); } xs->tail("properties"); }