Skip to content

Commit ce39a12

Browse files
committed
fix trailing comma.
1 parent ec0a4fd commit ce39a12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public void fpRemainderNormal() throws SolverException, InterruptedException {
196196

197197
for (FloatingPointType prec :
198198
new FloatingPointType[] {
199-
singlePrecType, doublePrecType, FormulaType.getFloatingPointType(5, 6)
199+
singlePrecType, doublePrecType, FormulaType.getFloatingPointType(5, 6),
200200
}) {
201201

202202
final FloatingPointFormula numFive = fpmgr.makeNumber(5, prec);
@@ -220,7 +220,7 @@ public void fpRemainderSpecial() throws SolverException, InterruptedException {
220220

221221
for (FloatingPointType prec :
222222
new FloatingPointType[] {
223-
singlePrecType, doublePrecType, FormulaType.getFloatingPointType(5, 6)
223+
singlePrecType, doublePrecType, FormulaType.getFloatingPointType(5, 6),
224224
}) {
225225

226226
final FloatingPointFormula num = fpmgr.makeNumber(42, prec);

0 commit comments

Comments
 (0)