Add back @FunctionalInterface which was in 4.4

This commit is contained in:
Gary Gregory 2024-07-10 08:28:07 -04:00
parent c55dda383c
commit c5037c97bd

View File

@ -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