Skip to content

Commit 3196f7f

Browse files
Fixed formating
1 parent c8c7712 commit 3196f7f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/org/sosy_lab/java_smt/solvers/mathsat5/Mathsat5AbstractProver.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ public boolean isUnsat() throws InterruptedException, SolverException {
104104
boolean result;
105105
try {
106106
result = !msat_check_sat(curEnv);
107-
}
108-
catch (IllegalStateException pE) {
107+
} catch (IllegalStateException pE) {
109108
if (Objects.equals(
110109
pE.getMessage(), "msat_solve returned \"unknown\": user-requested termination")) {
111110
assert shutdownNotifier.shouldShutdown();

src/org/sosy_lab/java_smt/test/SolverThreadLocalTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ public void nonlocalContext() throws ExecutionException, InterruptedException, S
9595
}
9696
}
9797

98-
9998
@SuppressWarnings("resource")
10099
@Test
101100
public void nonlocalFormulaTest()

0 commit comments

Comments
 (0)