Skip to content

Commit 01d0046

Browse files
author
Lee Rhodes
committed
Javadoc corrections
1 parent 955b018 commit 01d0046

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

memory/src/main/java/com/yahoo/memory/Memory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* The methods of this interface leverage the capabilities of the sun.misc.Unsafe class.
1515
*
1616
* <p>In contrast to the <i>java.nio.ByteBuffer</i> classes, which were designed for native
17-
* streaming I/O and include concepts such as <i>position, limit, mark, flip,</i> and <i>rewind</i>,
17+
* streaming I/O and include concepts such as <i>position, limit, mark, flip</i> and <i>rewind</i>,
1818
* this interface specifically bypasses these concepts and instead provides a rich collection of
1919
* primitive, bit, array and copy methods that access the data directly from a single byte offset.
2020
*

sketches/src/main/java/com/yahoo/sketches/quantiles/DoublesUpdateImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Lee Rhodes
1414
* @author Kevin Lang
1515
*/
16-
public class DoublesUpdateImpl {
16+
class DoublesUpdateImpl {
1717

1818
static void growBaseBuffer(final DoublesSketch sketch) { //n has not been incremented yet
1919
final double[] baseBuffer = sketch.getCombinedBuffer(); //in this case it is just the BB

sketches/src/main/java/com/yahoo/sketches/sampling/SamplingUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @author Jon Malkin
99
*/
10-
public class SamplingUtil {
10+
class SamplingUtil {
1111

1212
public static final Random rand = new Random();
1313

0 commit comments

Comments
 (0)