Reverse change committed erroneously
This commit is contained in:
parent
3e53725896
commit
aa6f30482f
|
@ -206,7 +206,7 @@ public class HandlerMethod {
|
||||||
* @return the annotation, or {@code null} if none found
|
* @return the annotation, or {@code null} if none found
|
||||||
*/
|
*/
|
||||||
public <A extends Annotation> A getMethodAnnotation(Class<A> annotationType) {
|
public <A extends Annotation> A getMethodAnnotation(Class<A> annotationType) {
|
||||||
return AnnotationUtils.findAnnotation(this.bridgedMethod, annotationType);
|
return AnnotationUtils.findAnnotation(this.method, annotationType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -206,7 +206,7 @@ public class HandlerMethod {
|
||||||
* @return the annotation, or {@code null} if none found
|
* @return the annotation, or {@code null} if none found
|
||||||
*/
|
*/
|
||||||
public <A extends Annotation> A getMethodAnnotation(Class<A> annotationType) {
|
public <A extends Annotation> A getMethodAnnotation(Class<A> annotationType) {
|
||||||
return AnnotationUtils.findAnnotation(this.bridgedMethod, annotationType);
|
return AnnotationUtils.findAnnotation(this.method, annotationType);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue