From 87df9fa3f55fe5920a9de131b71267609c2cba11 Mon Sep 17 00:00:00 2001 From: KEZEL BENOIT p1907091 Date: Sat, 4 Apr 2020 15:52:47 +0200 Subject: [PATCH] Changing method name replace by fileReading instead of FileReading --- src/noteBook/NoteBook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/noteBook/NoteBook.java b/src/noteBook/NoteBook.java index ee47310..94f0aea 100644 --- a/src/noteBook/NoteBook.java +++ b/src/noteBook/NoteBook.java @@ -13,7 +13,7 @@ public class NoteBook { public Input[] inputs; public Input[] selected; - public void FileReading(String fileName) throws IOException { + public void fileReading(String fileName) throws IOException { File file = new File(fileName); Scanner fileScanner = new Scanner(file); int lines = 0;