From 4043b1d38140d531f5f97d4f87850f168283c240 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 29 Oct 2013 09:53:25 -0700 Subject: [PATCH] Workaround Javadoc bug with JDK 8 (b112+) Remove Javadoc linkplain to ExceptionHandler#value() from AnnotationMethodHandlerExceptionResolver to work around JDK Javadoc bug 9007707. --- .../annotation/AnnotationMethodHandlerExceptionResolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.java index 1450d8a968..65bba17c38 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.java @@ -206,7 +206,7 @@ public class AnnotationMethodHandlerExceptionResolver extends AbstractHandlerExc /** * Returns all the exception classes handled by the given method. - *

The default implementation looks for exceptions in the {@linkplain ExceptionHandler#value() annotation}, + *

The default implementation looks for exceptions in the annotation, * or - if that annotation element is empty - any exceptions listed in the method parameters if the method * is annotated with {@code @ExceptionHandler}. * @param method the method