Skip to content

Commit

Permalink
Fixed formating
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-raffler committed Dec 14, 2023
1 parent c8c7712 commit 3196f7f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ public boolean isUnsat() throws InterruptedException, SolverException {
boolean result;
try {
result = !msat_check_sat(curEnv);
}
catch (IllegalStateException pE) {
} catch (IllegalStateException pE) {
if (Objects.equals(
pE.getMessage(), "msat_solve returned \"unknown\": user-requested termination")) {
assert shutdownNotifier.shouldShutdown();
Expand Down
1 change: 0 additions & 1 deletion src/org/sosy_lab/java_smt/test/SolverThreadLocalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public void nonlocalContext() throws ExecutionException, InterruptedException, S
}
}


@SuppressWarnings("resource")
@Test
public void nonlocalFormulaTest()
Expand Down

0 comments on commit 3196f7f

Please sign in to comment.