From 24d09a3b8d9750b55eb190258713d3e000e9c67f Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 26 Sep 2014 12:56:25 +0200 Subject: [PATCH] Fix Javadoc link to DEFAULT_NONE in @RequestMapping --- .../org/springframework/web/bind/annotation/RequestMapping.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java index 03b27a79a3..929c1b3de4 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java @@ -288,7 +288,7 @@ public @interface RequestMapping { *

Supported at the type level as well as at the method level! * When used at the type level, all method-level mappings inherit * this primary mapping, narrowing it for a specific handler method. - * @see org.springframework.web.bind.annotation.ValueConstants.DEFAULT_NONE + * @see org.springframework.web.bind.annotation.ValueConstants#DEFAULT_NONE */ String[] value() default {};