Skip to content

Commit

Permalink
Fixed javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Apr 11, 2016
1 parent 417eb92 commit 1aa2ad5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1689,8 +1689,8 @@ public static <T extends AnnotationDescription> ElementMatcher.Junction<T> annot
* @param <T> The type of the matched object.
* @return A matcher that matches the annotation's type for being equal to the given type.
*/
public static <T extends AnnotationDescription> ElementMatcher.Junction<T> annotationType(TypeDescription typeDescription) {
return annotationType(is(typeDescription));
public static <T extends AnnotationDescription> ElementMatcher.Junction<T> annotationType(TypeDescription type) {
return annotationType(is(type));
}

/**
Expand Down

0 comments on commit 1aa2ad5

Please sign in to comment.