Skip to content

Commit

Permalink
Merge pull request #483 from apache/add_final
Browse files Browse the repository at this point in the history
Add final
  • Loading branch information
leerho authored Dec 8, 2023
2 parents 0d48b4b + 0ec88c6 commit d2e0a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/datasketches/hll/Union.java
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public byte[] toUpdatableByteArray() {
@Override
public String toString(final boolean summary, final boolean hllDetail,
final boolean auxDetail, final boolean all) {
HllSketch clone = gadget.copy();
final HllSketch clone = gadget.copy();
checkRebuildCurMinNumKxQ(clone);
return clone.toString(summary, hllDetail, auxDetail, all);
}
Expand Down

0 comments on commit d2e0a46

Please sign in to comment.