Skip to content

Commit

Permalink
Add generic Javadoc parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jun 23, 2024
1 parent 541300f commit bc99097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
/**
* Predicate implementation that returns the result of a transformer.
*
* @param <T> the type of the input to the predicate.
* @since 3.0
*/
public final class TransformerPredicate<T> implements Predicate<T>, Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
/**
* Predicate implementation that always returns true.
*
* @param <T> the type of the input to the predicate.
* @since 3.0
*/
public final class TruePredicate<T> implements Predicate<T>, Serializable {
Expand Down

0 comments on commit bc99097

Please sign in to comment.