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-text.git
The following commit(s) were added to refs/heads/master by this push: new b333b25 Remove noisy separator // -- comments. b333b25 is described below commit b333b25d39c1160820f40d81fbd97e24a3407bf0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Dec 11 12:19:30 2019 -0500 Remove noisy separator // -- comments. --- src/test/java/org/apache/commons/text/matcher/StringMatcherTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/java/org/apache/commons/text/matcher/StringMatcherTest.java b/src/test/java/org/apache/commons/text/matcher/StringMatcherTest.java index 407fdfe..8dd54e7 100644 --- a/src/test/java/org/apache/commons/text/matcher/StringMatcherTest.java +++ b/src/test/java/org/apache/commons/text/matcher/StringMatcherTest.java @@ -91,7 +91,6 @@ public class StringMatcherTest { assertThat(matcher.isMatch(BUFFER1, 12, 0, BUFFER1.length)).isEqualTo(1); } - // ----------------------------------------------------------------------- @Test public void testMatcherIndices() { // remember that the API contract is tight for the isMatch() method @@ -103,7 +102,6 @@ public class StringMatcherTest { assertThat(matcher.isMatch(BUFFER2, 1, 0, 2)).isEqualTo(0); } - // ----------------------------------------------------------------------- @Test public void testNoneMatcher() { final StringMatcher matcher = StringMatcherFactory.INSTANCE.noneMatcher(); @@ -165,7 +163,6 @@ public class StringMatcherTest { assertThat(matcher.isMatch(BUFFER1, 10, 0, BUFFER1.length)).isEqualTo(0); } - // ----------------------------------------------------------------------- @Test public void testStringMatcher_String() { final StringMatcher matcher = StringMatcherFactory.INSTANCE.stringMatcher("bc");