This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 1b4e61a Remove redundant semicolons. 1b4e61a is described below commit 1b4e61a50a9036e28e1f11e2be79d2adeda2185d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Feb 28 12:54:10 2021 -0500 Remove redundant semicolons. --- src/test/java/org/apache/commons/jexl3/PublicFieldsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/jexl3/PublicFieldsTest.java b/src/test/java/org/apache/commons/jexl3/PublicFieldsTest.java index 47a5c02..470b70c 100644 --- a/src/test/java/org/apache/commons/jexl3/PublicFieldsTest.java +++ b/src/test/java/org/apache/commons/jexl3/PublicFieldsTest.java @@ -129,7 +129,7 @@ public class PublicFieldsTest extends JexlTestCase { } catch(final JexlException xjexl) {} } - public enum Gender { MALE, FEMALE }; + public enum Gender { MALE, FEMALE } @Test public void testGetEnum() throws Exception {