ajamesVISD / AdventureGalley

A world to explore. An ongoing project of students at Vashon Island High School.
0 stars 9 forks source link

Consolidate "reader" and "input" #39

Closed 9nut closed 6 years ago

9nut commented 6 years ago

Variables reader and input both contain a Scanner object that uses System.in. This is because the Reader class does not have the next or the nextLine method. Reader class should implement those methods and then main can use input.next() and input.nextLine() and eliminate the reader variable.