Commit 85319c07 authored by Phillip Webb's avatar Phillip Webb

Fix Java 8 Javadoc errors

parent 48959f25
......@@ -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;
......
......@@ -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);
......
......@@ -1714,4 +1714,4 @@
<id>integration-test</id>
</profile>
</profiles>
</project>
</project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment