Skip to content

Commit 9212cbd

Browse files
committed
Suppressed some print statements.
1 parent e1662cb commit 9212cbd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/datasketches/hll/SizeAndModeTransitions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ public void printlnTest() {
8989
* @param s value to print
9090
*/
9191
static void println(String s) {
92-
System.out.println(s); //disable here
92+
//System.out.println(s); //disable here
9393
}
9494

9595
/**
9696
* @param fmt format
9797
* @param args arguments
9898
*/
9999
static void printf(String fmt, Object...args) {
100-
System.out.printf(fmt, args); //disable here
100+
//System.out.printf(fmt, args); //disable here
101101
}
102102

103103
}

0 commit comments

Comments
 (0)