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 86c29d8 Checkstyle. 86c29d8 is described below commit 86c29d8062489ae53aff0a13df4ad97ae343ec29 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 30 19:49:23 2020 -0400 Checkstyle. --- .../org/apache/commons/text/matcher/StringMatcherOnCharArrayTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/text/matcher/StringMatcherOnCharArrayTest.java b/src/test/java/org/apache/commons/text/matcher/StringMatcherOnCharArrayTest.java index 68208d7..ad22693 100644 --- a/src/test/java/org/apache/commons/text/matcher/StringMatcherOnCharArrayTest.java +++ b/src/test/java/org/apache/commons/text/matcher/StringMatcherOnCharArrayTest.java @@ -256,7 +256,7 @@ public class StringMatcherOnCharArrayTest { @Test public void testStringMatcher_String_fromChars() { testStringMatcher_String(StringMatcherFactory.INSTANCE.stringMatcher('b', 'c')); - testStringMatcher_String(StringMatcherFactory.INSTANCE.stringMatcher(new char[] { 'b', 'c' })); + testStringMatcher_String(StringMatcherFactory.INSTANCE.stringMatcher(new char[] {'b', 'c'})); } @Test