Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lpapailiou committed Jul 3, 2021
1 parent 947ebb4 commit 902e251
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>fac</groupId>
<artifactId>fac</artifactId>
<version>2.3.3</version>
<version>2.3.4</version>

<dependencies>
<dependency>
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/main/ConsoleController.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,10 @@ private void startConsole() {
continue;
}

new Processor(mode, code + cache);
code.append(cache);
Processor processor = new Processor(mode, code + cache);
if (!processor.isErrorThrown() && !processor.isErrorThrown()) {
code.append(cache);
}
cache = "";
}
}
Expand Down

0 comments on commit 902e251

Please sign in to comment.