Skip to content

Commit

Permalink
Fixed redundant check.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickolasbradham committed Jan 7, 2023
1 parent 4f277de commit d2556d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nbradham/uwu/Interpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private Interpreter(File file) throws FileNotFoundException {
int line = -1;
while (s.hasNext()) {
read = s.nextLine();
if (read.startsWith("(^o^)") && !read.isBlank())
if (read.startsWith("(^o^)") || read.isBlank())
continue;

if (read.startsWith("!")) {
Expand Down

0 comments on commit d2556d2

Please sign in to comment.