Skip to content

Commit

Permalink
Make AbstractRandomSampling public (gstamatelat#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamatelat committed Jul 1, 2018
1 parent 5994a68 commit 5cf12bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @param <T> the item type
* @author Giorgos Stamatelatos
*/
abstract class AbstractRandomSampling<T> implements RandomSampling<T> {
public abstract class AbstractRandomSampling<T> implements RandomSampling<T> {
private final int sampleSize;
private final Random random;
private final List<T> sample;
Expand Down

0 comments on commit 5cf12bf

Please sign in to comment.