Sfoglia il codice sorgente

largest-series-product: remove "final" from class declaration


See #571
morrme 9 anni fa
parent
commit
bc2fc2fbf7

+ 1
- 1
exercises/largest-series-product/src/test/java/LargestSeriesProductCalculatorTest.java Vedi File

@@ -5,7 +5,7 @@ import org.junit.rules.ExpectedException;
5 5
 
6 6
 import static org.junit.Assert.assertEquals;
7 7
 
8
-public final class LargestSeriesProductCalculatorTest {
8
+public class LargestSeriesProductCalculatorTest {
9 9
 
10 10
     /*
11 11
      * See https://github.com/junit-team/junit4/wiki/Rules for information on JUnit Rules in general and