diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigureOrder.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigureOrder.java index 471c51c9b0..f861648a2d 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigureOrder.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigureOrder.java @@ -41,6 +41,7 @@ public @interface AutoConfigureOrder { /** * The order value. Default is {@link Ordered#LOWEST_PRECEDENCE}. * @see Ordered#getOrder() + * @return the order value */ int value() default Ordered.LOWEST_PRECEDENCE; diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/JCacheManagerCustomizer.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/JCacheManagerCustomizer.java index df674a2ad2..02d241fb3d 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/JCacheManagerCustomizer.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/JCacheManagerCustomizer.java @@ -17,7 +17,6 @@ package org.springframework.boot.autoconfigure.cache; import javax.cache.CacheManager; -import javax.cache.configuration.Configuration; /** * Callback interface that can be implemented by beans wishing to customize the cache @@ -25,13 +24,12 @@ import javax.cache.configuration.Configuration; * * @author Stephane Nicoll * @since 1.3.0 - * @see CacheManager#createCache(String, Configuration) */ public interface JCacheManagerCustomizer { /** * Customize the cache manager. - * @param cacheManager the {@link CacheManager} to customize + * @param cacheManager the {@code javax.cache.CacheManager} to customize */ void customize(CacheManager cacheManager); diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index b215f9b4f1..44a38aa939 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -1714,4 +1714,4 @@ integration-test - + \ No newline at end of file