Skip to content

Commit 3d7d9d0

Browse files
committed
Update copyright year of changed files
1 parent 14c1b09 commit 3d7d9d0

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/cassandra/CassandraHealthContributorAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2020 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.

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/cassandra/CassandraReactiveHealthContributorAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2020 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.

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/RedisHealth.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
*
2929
* @author Phillip Webb
3030
*/
31-
class RedisHealth {
31+
final class RedisHealth {
32+
33+
private RedisHealth() {
34+
}
3235

3336
static Builder up(Health.Builder builder, Properties info) {
3437
builder.withDetail("version", info.getProperty("redis_version"));

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/RedisReactiveHealthIndicator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2019 the original author or authors.
2+
* Copyright 2012-2020 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.

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/ApplicationContextFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public interface ApplicationContextFactory {
4141
* A default {@link ApplicationContextFactory} implementation that will create an
4242
* appropriate context for the {@link WebApplicationType}.
4343
*/
44-
static ApplicationContextFactory DEFAULT = (webApplicationType) -> {
44+
ApplicationContextFactory DEFAULT = (webApplicationType) -> {
4545
try {
4646
switch (webApplicationType) {
4747
case SERVLET:

0 commit comments

Comments
 (0)