Skip to content

Commit

Permalink
Fix Javadoc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Rhodes committed Aug 12, 2015
1 parent 8e18aff commit 2c21579
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/main/java/com/yahoo/sketches/hll/HllSketch.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,13 @@ protected void setUpdateCallback(Fields.UpdateCallback updateCallback)
{
this.updateCallback = updateCallback;
}

/** Helper methods that are potential extension points for children **/


//Helper methods that are potential extension points for children

/**
* The sum of the inverse powers of 2
* @return the sum of the inverse powers of 2
*/
protected double inversePowerOf2Sum() {
return HllUtils.computeInvPow2Sum(numBuckets(), fields.getBucketIterator());
}
Expand Down

0 comments on commit 2c21579

Please sign in to comment.