Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Jan 1, 2024
1 parent fdff7d4 commit ed58bb4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/overrun/marshal/internal/Processor.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,12 @@ protected boolean isUpcall(TypeMirror typeMirror) {
/**
* Add an annotation
*
* @param annotation annotation
* @param annotatable annotatable
* @param annotation annotation
* @param tClass tClass
* @param function function
* @param <T> annotation type
* @param <R> value
*/
protected <T extends Annotation, R> void addAnnotationValue(Annotatable annotatable, T annotation, Class<T> tClass, Function<T, R> function) {
if (annotation != null) {
Expand Down

0 comments on commit ed58bb4

Please sign in to comment.