File tree Expand file tree Collapse file tree
src/main/java/com/yahoo/sketches/theta Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments