Просмотр исходного кода

minesweeper: remove "final" from class declaration

see #571
morrme 9 лет назад
Родитель
Сommit
2c8ab70564
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      exercises/minesweeper/src/test/java/MinesweeperBoardTest.java

+ 1
- 1
exercises/minesweeper/src/test/java/MinesweeperBoardTest.java Просмотреть файл

9
 
9
 
10
 import static org.junit.Assert.assertEquals;
10
 import static org.junit.Assert.assertEquals;
11
 
11
 
12
-public final class MinesweeperBoardTest {
12
+public class MinesweeperBoardTest {
13
 
13
 
14
     /*
14
     /*
15
      * See https://github.com/junit-team/junit4/wiki/Rules for information on JUnit Rules in general and
15
      * See https://github.com/junit-team/junit4/wiki/Rules for information on JUnit Rules in general and