Work to get it to compile

This commit is contained in:
Brandon Rozek 2023-03-29 21:15:57 -04:00
parent 9532243465
commit bad5fb5914
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
2 changed files with 2 additions and 2 deletions

View file

@ -342,7 +342,7 @@ public class PlanningProblem {
Set<Formula> formulae = objects.stream().map(x -> {
try {
return Reader.readFormula(x);
} catch (Reader.ParsingException e) {
} catch (Exception e) {
e.printStackTrace();
return null;
}