Skip to content

Commit

Permalink
make varopt classes package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalkin committed Apr 11, 2017
1 parent e1f286d commit e2414e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Jon Malkin
*/
public class VarOptItemsSamples<T> implements Iterable<VarOptItemsSamples<T>.WeightedSample> {
class VarOptItemsSamples<T> implements Iterable<VarOptItemsSamples<T>.WeightedSample> {

private final VarOptItemsSketch<T> sketch_;
private VarOptItemsSketch<T>.Result sampleLists;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* @author Jon Malkin
* @author Kevin Lang
*/
public final class VarOptItemsSketch<T> {
final class VarOptItemsSketch<T> {
/**
* The smallest sampling array allocated: 16
*/
Expand Down

0 comments on commit e2414e4

Please sign in to comment.