Skip to content

Commit 7a799b2

Browse files
committed
Interface StringLookup now extends UnaryOperator<String>
1 parent 70cecfb commit 7a799b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/text/lookup/StringLookup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public interface StringLookup extends UnaryOperator<String> {
6262
* @since 1.14.0
6363
*/
6464
@Override
65-
default String apply(String key) {
65+
default String apply(final String key) {
6666
return lookup(key);
6767
}
6868

0 commit comments

Comments
 (0)