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-collections.git
The following commit(s) were added to refs/heads/master by this push: new c5037c97b Add back @FunctionalInterface which was in 4.4 c5037c97b is described below commit c5037c97bd1ecbb44cb6ecf8649b5deb521cc7c4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jul 10 08:28:07 2024 -0400 Add back @FunctionalInterface which was in 4.4 --- src/main/java/org/apache/commons/collections4/Transformer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/collections4/Transformer.java b/src/main/java/org/apache/commons/collections4/Transformer.java index 5bf322361..221b95729 100644 --- a/src/main/java/org/apache/commons/collections4/Transformer.java +++ b/src/main/java/org/apache/commons/collections4/Transformer.java @@ -40,6 +40,7 @@ import java.util.function.Function; * @deprecated Use {@link Function}. */ @Deprecated +@FunctionalInterface public interface Transformer<T, R> extends Function<T, R> { @Override