Skip to content

Commit 3a9262c

Browse files
committed
Fix Javadoc warnings in Gradle build
1 parent c0b52d0 commit 3a9262c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ configure(allprojects) { project ->
184184
"https://tiles.apache.org/framework/apidocs/",
185185
"https://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
186186
"https://www.ehcache.org/apidocs/2.10.4",
187-
"https://www.quartz-scheduler.org/api/${quartzVersion}/",
187+
"https://www.quartz-scheduler.org/api/2.3.0/",
188188
"https://fasterxml.github.io/jackson-core/javadoc/2.9/",
189189
"https://fasterxml.github.io/jackson-databind/javadoc/2.9/",
190190
"https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.9/",

spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -184,7 +184,7 @@ default void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
184184
* Configure exception resolvers.
185185
* <p>The given list starts out empty. If it is left empty, the framework
186186
* configures a default set of resolvers, see
187-
* {@link WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)}.
187+
* {@link WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)}.
188188
* Or if any exception resolvers are added to the list, then the application
189189
* effectively takes over and must provide, fully initialized, exception
190190
* resolvers.
@@ -193,7 +193,7 @@ default void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
193193
* or modify the list of exception resolvers configured by default.
194194
* @param resolvers initially an empty list
195195
* @see #extendHandlerExceptionResolvers(List)
196-
* @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)
196+
* @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)
197197
*/
198198
default void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> resolvers) {
199199
}
@@ -204,7 +204,7 @@ default void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> r
204204
* interfering with default ones.
205205
* @param resolvers the list of configured resolvers to extend
206206
* @since 4.3
207-
* @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)
207+
* @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)
208208
*/
209209
default void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> resolvers) {
210210
}

0 commit comments

Comments
 (0)