1
0
Fork 0

Fix TestSelection after merge

This commit is contained in:
Ethanell 2020-04-04 15:59:16 +02:00
parent 149be98a0a
commit e2ed3083c9

View file

@ -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);
}