From: Andreas Beeker Date: Wed, 2 Sep 2015 19:44:14 +0000 (+0000) Subject: remove trailing comma ... works ok in Oracle jdk6, but maybe not in openjdk ... X-Git-Tag: REL_3_13_FINAL~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=994247fe84e7a780f72946a09c2018568385260d;p=poi.git remove trailing comma ... works ok in Oracle jdk6, but maybe not in openjdk ... git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1700880 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/ss/formula/eval/AllFormulaEvalTests.java b/src/testcases/org/apache/poi/ss/formula/eval/AllFormulaEvalTests.java index 70def40f80..d30e5e585a 100644 --- a/src/testcases/org/apache/poi/ss/formula/eval/AllFormulaEvalTests.java +++ b/src/testcases/org/apache/poi/ss/formula/eval/AllFormulaEvalTests.java @@ -36,7 +36,7 @@ import org.junit.runners.Suite; TestMissingArgEval.class, TestPercentEval.class, TestRangeEval.class, - TestUnaryPlusEval.class, + TestUnaryPlusEval.class }) public class AllFormulaEvalTests { } diff --git a/src/testcases/org/apache/poi/ss/formula/ptg/AllFormulaTests.java b/src/testcases/org/apache/poi/ss/formula/ptg/AllFormulaTests.java index 8aded05f97..79b4a7c5d3 100644 --- a/src/testcases/org/apache/poi/ss/formula/ptg/AllFormulaTests.java +++ b/src/testcases/org/apache/poi/ss/formula/ptg/AllFormulaTests.java @@ -49,7 +49,7 @@ import org.junit.runners.Suite; TestRef3DPtg.class, TestReferencePtg.class, TestSheetNameFormatter.class, - TestUnionPtg.class, + TestUnionPtg.class }) public class AllFormulaTests { }