Fix TestSelection after merge
This commit is contained in:
parent
149be98a0a
commit
e2ed3083c9
1 changed files with 4 additions and 2 deletions
|
@ -3,10 +3,12 @@ package test;
|
|||
import input.Input;
|
||||
import noteBook.NoteBook;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class TestSelection {
|
||||
public static void main(String[] args) {
|
||||
public static void main(String[] args) throws IOException {
|
||||
NoteBook book = new NoteBook();
|
||||
book.FileReading("testBook");
|
||||
book.fileReading("testBook");
|
||||
for (Input i: book.inputs)
|
||||
System.out.println(i);
|
||||
}
|
||||
|
|
Reference in a new issue