src/share/vm/utilities/xmlstream.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/utilities/xmlstream.cpp

src/share/vm/utilities/xmlstream.cpp

Print this page

        

*** 397,407 **** void xmlStream::method_text(methodHandle method) { ResourceMark rm; assert_if_no_error(inside_attrs(), "printing attributes"); if (method.is_null()) return; ! text()->print(method->method_holder()->external_name()); print_raw(" "); // " " is easier for tools to parse than "::" method->name()->print_symbol_on(text()); print_raw(" "); // separator method->signature()->print_symbol_on(text()); } --- 397,407 ---- void xmlStream::method_text(methodHandle method) { ResourceMark rm; assert_if_no_error(inside_attrs(), "printing attributes"); if (method.is_null()) return; ! text()->print("%s", method->method_holder()->external_name()); print_raw(" "); // " " is easier for tools to parse than "::" method->name()->print_symbol_on(text()); print_raw(" "); // separator method->signature()->print_symbol_on(text()); }
src/share/vm/utilities/xmlstream.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File