Be quiet on the console.

This commit is contained in:
Gary Gregory 2020-01-01 08:47:43 -05:00
parent e1a4955e91
commit 3b75763f9d
1 changed files with 2 additions and 2 deletions

View File

@ -244,8 +244,8 @@ public class FastDateFormatTest {
final Format fdf = FastDateFormat.getInstance(pattern);
final AtomicLongArray fdfTime= measureTime(fdf, fdf);
System.out.println(">>FastDateFormatTest: FastDatePrinter:"+fdfTime.get(0)+" SimpleDateFormat:"+sdfTime.get(0));
System.out.println(">>FastDateFormatTest: FastDateParser:"+fdfTime.get(1)+" SimpleDateFormat:"+sdfTime.get(1));
//System.out.println(">>FastDateFormatTest: FastDatePrinter:"+fdfTime.get(0)+" SimpleDateFormat:"+sdfTime.get(0));
//System.out.println(">>FastDateFormatTest: FastDateParser:"+fdfTime.get(1)+" SimpleDateFormat:"+sdfTime.get(1));
}
private static final int NTHREADS= 10;