--- old/src/share/vm/runtime/timer.cpp 2012-09-17 10:37:04.653231000 +0200 +++ new/src/share/vm/runtime/timer.cpp 2012-09-17 10:37:01.535052600 +0200 @@ -120,10 +120,7 @@ if (_active) { _accum = NULL; - if (PrintGCTimeStamps) { - _logfile->stamp(); - _logfile->print(": "); - } + _logfile->stamp(PrintGCTimeStamps); _logfile->print("[%s", title); _logfile->flush(); _t.start(); @@ -141,10 +138,7 @@ _logfile = (logfile != NULL) ? logfile : tty; if (_active) { if (_verbose) { - if (PrintGCTimeStamps) { - _logfile->stamp(); - _logfile->print(": "); - } + _logfile->stamp(PrintGCTimeStamps); _logfile->print("[%s", title); _logfile->flush(); }