Skip to content

Commit e084511

Browse files
committed
sieve: remove public's from starter implementation
1 parent dad658e commit e084511

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.util.List;
22

3-
public class Sieve {
4-
public Sieve(int maxPrime) {
3+
class Sieve {
4+
Sieve(int maxPrime) {
55
throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
66
}
77

8-
public List<Integer> getPrimes() {
8+
List<Integer> getPrimes() {
99
throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
1010
}
1111
}

0 commit comments

Comments
 (0)