Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
85319c07
Commit
85319c07
authored
Mar 28, 2015
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Java 8 Javadoc errors
parent
48959f25
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
AutoConfigureOrder.java
...pringframework/boot/autoconfigure/AutoConfigureOrder.java
+1
-0
JCacheManagerCustomizer.java
...ork/boot/autoconfigure/cache/JCacheManagerCustomizer.java
+1
-3
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigureOrder.java
View file @
85319c07
...
...
@@ -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
;
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/JCacheManagerCustomizer.java
View file @
85319c07
...
...
@@ -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
);
...
...
spring-boot-dependencies/pom.xml
View file @
85319c07
...
...
@@ -1714,4 +1714,4 @@
<id>
integration-test
</id>
</profile>
</profiles>
</project>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment