Преглед изворни кода

Indent with 4 spaces and add newline to end of file

Logan Stucki пре 9 година
родитељ
комит
dad658e12b
1 измењених фајлова са 4 додато и 4 уклоњено
  1. 4
    4
      exercises/sieve/src/main/java/Sieve.java

+ 4
- 4
exercises/sieve/src/main/java/Sieve.java Прегледај датотеку

@@ -1,11 +1,11 @@
1 1
 import java.util.List;
2 2
 
3 3
 public class Sieve {
4
-	public Sieve(int maxPrime) {
5
-		throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
4
+    public Sieve(int maxPrime) {
5
+        throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
6 6
     }
7 7
 
8 8
     public List<Integer> getPrimes() {
9
-    	throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
9
+        throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
10 10
     }
11
-}
11
+}