Consistent abstract declaration of "Abstract" base classes

Closes gh-25240
This commit is contained in:
Juergen Hoeller
2020-06-11 23:43:41 +02:00
parent c2457b960f
commit a37fda5253
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ import org.springframework.lang.Nullable;
* @see JCacheConfigurer
*/
@Configuration
public class AbstractJCacheConfiguration extends AbstractCachingConfiguration {
public abstract class AbstractJCacheConfiguration extends AbstractCachingConfiguration {
@Nullable
protected CacheResolver exceptionCacheResolver;