Skip to content

Commit e081e56

Browse files
committed
added since annotation to Converter and Verifier
1 parent 037550d commit e081e56

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/apache/commons/cli/converters/Converter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2626
* Like {@code Function<String,T>} but can throw an Exception.
2727
*
2828
* @param <T> The return type for the function.
29+
* @since 1.7
2930
*/
3031
@FunctionalInterface
3132
public interface Converter<T> {

src/main/java/org/apache/commons/cli/converters/Verifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2121
/**
2222
* The definition of the functional interface to call when verifying a string
2323
* for input Like {@code Predicate<String>} but can throw a RuntimeException.
24-
*
24+
* @since 1.7
2525
*/
2626
@FunctionalInterface
2727
public interface Verifier {

0 commit comments

Comments
 (0)