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 0a5c794 Checkstyle.
0a5c794 is described below
commit 0a5c7943324fd146acc6f8e0994787de0d85e387
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jun 28 10:48:51 2020 -0400
Checkstyle.
---
.../java/org/apache/commons/text/lookup/BiFunctionStringLookup.java | 2 +-
src/main/java/org/apache/commons/text/lookup/BiStringLookup.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/text/lookup/BiFunctionStringLookup.java
b/src/main/java/org/apache/commons/text/lookup/BiFunctionStringLookup.java
index e62e601..0bd49a5 100644
--- a/src/main/java/org/apache/commons/text/lookup/BiFunctionStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/BiFunctionStringLookup.java
@@ -107,7 +107,7 @@ final class BiFunctionStringLookup<P, R> implements
BiStringLookup<P> {
}
@Override
- public String lookup(String key) {
+ public String lookup(final String key) {
return lookup(key, null);
}
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 a848634..ac5c879 100644
--- a/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java
@@ -34,7 +34,7 @@ import java.util.function.Function;
* Like {@link BiFunction} is a variant of {@link Function}, this {@code
BiStringLookup} is a variant of
* {@link StringLookup}.
* </p>
- *
+ *
* @param <U> The second argument type.
*
* @since 1.9