Skip to content

Commit

Permalink
Compiler now works again in cli if no bestSourceTarget exists
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Jun 10, 2022
1 parent 71055fe commit b443c30
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,9 @@ public void saveConfigFile() throws IOException {
}

public Optional<Integer> getBestSourceTarget() {
if (sourceTargetValue == null) {
return Optional.empty();
}
return sourceTargetValue;
}

Expand Down

0 comments on commit b443c30

Please sign in to comment.