See gh-30862
This commit is contained in:
izeye
2022-05-04 22:55:33 +09:00
committed by Andy Wilkinson
parent d5f4323f53
commit 624c41c80e
4 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2022 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.
@@ -131,7 +131,7 @@ public class LoggingApplicationListener implements GenericApplicationListener {
public static final String LOG_FILE_BEAN_NAME = "springBootLogFile";
/**
* The name of the{@link LoggerGroups} bean.
* The name of the {@link LoggerGroups} bean.
* @since 2.2.0
*/
public static final String LOGGER_GROUPS_BEAN_NAME = "springBootLoggerGroups";

View File

@@ -165,7 +165,7 @@ public class OriginTrackedResource implements Resource, OriginProvider {
* {@link WritableResource}.
* @param resource the tracked resource
* @param origin the origin of the resource
* @return a {@link OriginTrackedWritableResource} instance
* @return an {@link OriginTrackedWritableResource} instance
*/
public static OriginTrackedWritableResource of(WritableResource resource, Origin origin) {
return (OriginTrackedWritableResource) of((Resource) resource, origin);
@@ -176,7 +176,7 @@ public class OriginTrackedResource implements Resource, OriginProvider {
* {@link Resource}.
* @param resource the tracked resource
* @param origin the origin of the resource
* @return a {@link OriginTrackedResource} instance
* @return an {@link OriginTrackedResource} instance
*/
public static OriginTrackedResource of(Resource resource, Origin origin) {
if (resource instanceof WritableResource) {