Skip to content

Commit

Permalink
Version 1.0.0 release with a stupid cpu player successfully running
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholascw committed Dec 12, 2017
1 parent aa4cc2c commit 3e5843a
Show file tree
Hide file tree
Showing 2 changed files with 218 additions and 219 deletions.
2 changes: 1 addition & 1 deletion TextIO.java
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ private static long readInteger(long min, long max) { // read long
errorMessage("Integer value not found in input.",
"Integer in the range " + min + " to " + max);
} else {
String str = s.toString();
String str = s;
try {
x = Long.parseLong(str);
} catch (NumberFormatException e) {
Expand Down
Loading

0 comments on commit 3e5843a

Please sign in to comment.