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 bb204fd Checkstyle. bb204fd is described below commit bb204fd10e181f2643cb9a79b4ad1b6232fdff8d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 27 14:10:57 2020 -0400 Checkstyle. --- src/main/java/org/apache/commons/text/lookup/BiStringLookup.java | 2 +- .../java/org/apache/commons/text/lookup/FunctionStringLookupTest.java | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java b/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java index 90a3437..e806677 100644 --- a/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java +++ b/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java @@ -27,7 +27,7 @@ package org.apache.commons.text.lookup; * For example, it would be possible to implement a lookup that used the key as a primary key, and looked up the value * on demand from the database. * </p> - * + * * @param <U> The second argument type. * * @since 1.9 diff --git a/src/test/java/org/apache/commons/text/lookup/FunctionStringLookupTest.java b/src/test/java/org/apache/commons/text/lookup/FunctionStringLookupTest.java index af10943..1ae122e 100644 --- a/src/test/java/org/apache/commons/text/lookup/FunctionStringLookupTest.java +++ b/src/test/java/org/apache/commons/text/lookup/FunctionStringLookupTest.java @@ -20,9 +20,7 @@ package org.apache.commons.text.lookup; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; -import java.util.function.BiFunction; -import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test;