This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 2b5eb533c6 Remove unnecessary semicolon 2b5eb533c6 is described below commit 2b5eb533c6ec60c3a4225d1c3d83baeb0520158e Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jan 9 22:06:56 2023 +0000 Remove unnecessary semicolon --- test/org/apache/tomcat/util/json/TestJSONFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/tomcat/util/json/TestJSONFilter.java b/test/org/apache/tomcat/util/json/TestJSONFilter.java index 0e06433735..7abac71ce2 100644 --- a/test/org/apache/tomcat/util/json/TestJSONFilter.java +++ b/test/org/apache/tomcat/util/json/TestJSONFilter.java @@ -77,6 +77,6 @@ public class TestJSONFilter { @Test public void testStringEscaping() { - Assert.assertEquals(output, JSONFilter.escape(input));; + Assert.assertEquals(output, JSONFilter.escape(input)); } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org