Skip to content

Commit

Permalink
Made methods public
Browse files Browse the repository at this point in the history
  • Loading branch information
lrhodes committed Oct 20, 2017
1 parent 1054e7f commit ff71eff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/yahoo/sketches/theta/AnotB.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class AnotB extends SetOperation {
* @param a The incoming sketch for the first argument
* @param b The incoming sketch for the second argument
*/
abstract void update(Sketch a, Sketch b);
public abstract void update(Sketch a, Sketch b);

/**
* Gets the result of this operation as a CompactSketch of the chosen form
Expand All @@ -52,11 +52,11 @@ public abstract class AnotB extends SetOperation {
*
* @return the result of this operation as a CompactSketch of the chosen form
*/
abstract CompactSketch getResult(boolean dstOrdered, WritableMemory dstMem);
public abstract CompactSketch getResult(boolean dstOrdered, WritableMemory dstMem);

/**
* Gets the result of this operation as an ordered CompactSketch on the Java heap
* @return the result of this operation as an ordered CompactSketch on the Java heap
*/
abstract CompactSketch getResult();
public abstract CompactSketch getResult();
}

0 comments on commit ff71eff

Please sign in to comment.