Skip to content

Commit 30ebb17

Browse files
committed
Polish
1 parent 28214e1 commit 30ebb17

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/cache/CacheAutoConfigurationTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 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.
@@ -48,7 +48,7 @@
4848
import org.springframework.boot.testsupport.classpath.ClassPathExclusions;
4949
import org.springframework.cache.Cache;
5050
import org.springframework.cache.CacheManager;
51-
import org.springframework.cache.annotation.CachingConfigurerSupport;
51+
import org.springframework.cache.annotation.CachingConfigurer;
5252
import org.springframework.cache.annotation.EnableCaching;
5353
import org.springframework.cache.caffeine.CaffeineCache;
5454
import org.springframework.cache.caffeine.CaffeineCacheManager;
@@ -888,7 +888,7 @@ CacheManager cacheManager() {
888888

889889
@Configuration(proxyBeanMethods = false)
890890
@EnableCaching
891-
static class CustomCacheManagerFromSupportConfiguration extends CachingConfigurerSupport {
891+
static class CustomCacheManagerFromSupportConfiguration implements CachingConfigurer {
892892

893893
@Override
894894
@Bean
@@ -901,7 +901,7 @@ public CacheManager cacheManager() {
901901

902902
@Configuration(proxyBeanMethods = false)
903903
@EnableCaching
904-
static class CustomCacheResolverFromSupportConfiguration extends CachingConfigurerSupport {
904+
static class CustomCacheResolverFromSupportConfiguration implements CachingConfigurer {
905905

906906
@Override
907907
@Bean

0 commit comments

Comments
 (0)