Skip to content

Commit ff71eff

Browse files
author
lrhodes
committed
Made methods public
1 parent 1054e7f commit ff71eff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/yahoo/sketches/theta/AnotB.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public abstract class AnotB extends SetOperation {
4040
* @param a The incoming sketch for the first argument
4141
* @param b The incoming sketch for the second argument
4242
*/
43-
abstract void update(Sketch a, Sketch b);
43+
public abstract void update(Sketch a, Sketch b);
4444

4545
/**
4646
* Gets the result of this operation as a CompactSketch of the chosen form
@@ -52,11 +52,11 @@ public abstract class AnotB extends SetOperation {
5252
*
5353
* @return the result of this operation as a CompactSketch of the chosen form
5454
*/
55-
abstract CompactSketch getResult(boolean dstOrdered, WritableMemory dstMem);
55+
public abstract CompactSketch getResult(boolean dstOrdered, WritableMemory dstMem);
5656

5757
/**
5858
* Gets the result of this operation as an ordered CompactSketch on the Java heap
5959
* @return the result of this operation as an ordered CompactSketch on the Java heap
6060
*/
61-
abstract CompactSketch getResult();
61+
public abstract CompactSketch getResult();
6262
}

0 commit comments

Comments
 (0)