Changing method name replace by fileReading instead of FileReading
This commit is contained in:
parent
e9ec0251af
commit
87df9fa3f5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue