Skip to content

Commit

Permalink
Consistent abstract declaration of "Abstract" base classes
Browse files Browse the repository at this point in the history
Closes gh-25240
  • Loading branch information
jhoeller committed Jun 11, 2020
1 parent ae1ed9d commit e46ccd7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
@@ -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.
Expand Down Expand Up @@ -39,7 +39,7 @@
* @see JCacheConfigurer
*/
@Configuration
public class AbstractJCacheConfiguration extends AbstractCachingConfiguration {
public abstract class AbstractJCacheConfiguration extends AbstractCachingConfiguration {

@Nullable
protected Supplier<CacheResolver> exceptionCacheResolver;
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 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.
Expand All @@ -22,7 +22,7 @@
* @author Rob Harrop
* @since 1.2
*/
public class AbstractJmxAttribute {
public abstract class AbstractJmxAttribute {

private String description = "";

Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 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.
Expand Down Expand Up @@ -27,7 +27,7 @@
* @see AbstractTemplateView
* @see org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver
*/
public class AbstractTemplateViewResolver extends UrlBasedViewResolver {
public abstract class AbstractTemplateViewResolver extends UrlBasedViewResolver {

private boolean exposeRequestAttributes = false;

Expand Down

0 comments on commit e46ccd7

Please sign in to comment.