leerho commented on code in PR #685:
URL: https://github.com/apache/datasketches-java/pull/685#discussion_r2402824851


##########
src/test/java/org/apache/datasketches/theta/UpdateSketchTest.java:
##########
@@ -211,12 +210,12 @@ public void checkIsResizeFactorIncorrect() {
   public void checkCompactOpsMemorySegmentToCompact() {
     MemorySegment skwseg, cskwseg1, cskwseg2, cskwseg3;
     CompactSketch csk1, csk2, csk3;
-    int lgK = 6;
-    UpdateSketch sk = 
Sketches.updateSketchBuilder().setLogNominalEntries(lgK).build();
-    int n = 1 << (lgK + 1);
+    final int lgK = 6;
+    final UpdateSketch sk = 
UpdateSketch.builder().setLogNominalEntries(lgK).build();
+    final int n = 1 << lgK + 1;

Review Comment:
   Again, I didn't change those parenthesis. Weird.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@datasketches.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@datasketches.apache.org
For additional commands, e-mail: dev-h...@datasketches.apache.org

Reply via email to