Commit 3d7d9d06 authored by Phillip Webb's avatar Phillip Webb

Update copyright year of changed files

parent 14c1b093
/* /*
* Copyright 2012-2019 the original author or authors. * Copyright 2012-2020 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
......
/* /*
* Copyright 2012-2019 the original author or authors. * Copyright 2012-2020 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
......
...@@ -28,7 +28,10 @@ import org.springframework.data.redis.connection.ClusterInfo; ...@@ -28,7 +28,10 @@ import org.springframework.data.redis.connection.ClusterInfo;
* *
* @author Phillip Webb * @author Phillip Webb
*/ */
class RedisHealth { final class RedisHealth {
private RedisHealth() {
}
static Builder up(Health.Builder builder, Properties info) { static Builder up(Health.Builder builder, Properties info) {
builder.withDetail("version", info.getProperty("redis_version")); builder.withDetail("version", info.getProperty("redis_version"));
......
/* /*
* Copyright 2012-2019 the original author or authors. * Copyright 2012-2020 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
......
...@@ -41,7 +41,7 @@ public interface ApplicationContextFactory { ...@@ -41,7 +41,7 @@ public interface ApplicationContextFactory {
* A default {@link ApplicationContextFactory} implementation that will create an * A default {@link ApplicationContextFactory} implementation that will create an
* appropriate context for the {@link WebApplicationType}. * appropriate context for the {@link WebApplicationType}.
*/ */
static ApplicationContextFactory DEFAULT = (webApplicationType) -> { ApplicationContextFactory DEFAULT = (webApplicationType) -> {
try { try {
switch (webApplicationType) { switch (webApplicationType) {
case SERVLET: case SERVLET:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment