Skip to content

Commit 1de7edb

Browse files
committed
Remove accidentally committed code
1 parent 5d6a507 commit 1de7edb

File tree

1 file changed

+0
-26
lines changed
  • spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging

1 file changed

+0
-26
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/LoggersEndpoint.java

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,6 @@ public static class LoggersDescriptor implements OperationResponseBody {
137137

138138
private final Map<String, GroupLoggerLevelsDescriptor> groups;
139139

140-
/**
141-
* Create a new {@link LoggersDescriptor} instance.
142-
* @param levels the levels
143-
* @param loggers the loggers
144-
* @param groups the groups
145-
*/
146-
@Deprecated(since = "3.2.0", forRemoval = true)
147140
public LoggersDescriptor(NavigableSet<LogLevel> levels, Map<String, LoggerLevelsDescriptor> loggers,
148141
Map<String, GroupLoggerLevelsDescriptor> groups) {
149142
this.levels = levels;
@@ -172,11 +165,6 @@ public static class LoggerLevelsDescriptor implements OperationResponseBody {
172165

173166
private final String configuredLevel;
174167

175-
/**
176-
* Create a new {@link LoggerLevelsDescriptor} instance.
177-
* @param configuredLevel the configured level
178-
*/
179-
@Deprecated(since = "3.2.0", forRemoval = true)
180168
public LoggerLevelsDescriptor(LogLevel configuredLevel) {
181169
this.configuredLevel = (configuredLevel != null) ? configuredLevel.name() : null;
182170
}
@@ -185,11 +173,6 @@ public LoggerLevelsDescriptor(LogLevel configuredLevel) {
185173
this.configuredLevel = (directConfiguration != null) ? directConfiguration.getName() : null;
186174
}
187175

188-
/**
189-
* @param level
190-
* @return
191-
*/
192-
@Deprecated(since = "3.2.0", forRemoval = true)
193176
protected final String getName(LogLevel level) {
194177
return (level != null) ? level.name() : null;
195178
}
@@ -207,11 +190,6 @@ public static class GroupLoggerLevelsDescriptor extends LoggerLevelsDescriptor {
207190

208191
private final List<String> members;
209192

210-
/**
211-
* @param configuredLevel
212-
* @param members
213-
*/
214-
@Deprecated(since = "3.2.0", forRemoval = true)
215193
public GroupLoggerLevelsDescriptor(LogLevel configuredLevel, List<String> members) {
216194
super(configuredLevel);
217195
this.members = members;
@@ -230,10 +208,6 @@ public static class SingleLoggerLevelsDescriptor extends LoggerLevelsDescriptor
230208

231209
private final String effectiveLevel;
232210

233-
/**
234-
* @param configuration
235-
*/
236-
@Deprecated(since = "3.2.0", forRemoval = true)
237211
public SingleLoggerLevelsDescriptor(LoggerConfiguration configuration) {
238212
super(configuration.getLevelConfiguration(ConfigurationScope.DIRECT));
239213
this.effectiveLevel = configuration.getLevelConfiguration().getName();

0 commit comments

Comments
 (0)