Skip to content

Commit

Permalink
Remove accidentally committed code
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jun 16, 2023
1 parent 5d6a507 commit 1de7edb
Showing 1 changed file with 0 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,6 @@ public static class LoggersDescriptor implements OperationResponseBody {

private final Map<String, GroupLoggerLevelsDescriptor> groups;

/**
* Create a new {@link LoggersDescriptor} instance.
* @param levels the levels
* @param loggers the loggers
* @param groups the groups
*/
@Deprecated(since = "3.2.0", forRemoval = true)
public LoggersDescriptor(NavigableSet<LogLevel> levels, Map<String, LoggerLevelsDescriptor> loggers,
Map<String, GroupLoggerLevelsDescriptor> groups) {
this.levels = levels;
Expand Down Expand Up @@ -172,11 +165,6 @@ public static class LoggerLevelsDescriptor implements OperationResponseBody {

private final String configuredLevel;

/**
* Create a new {@link LoggerLevelsDescriptor} instance.
* @param configuredLevel the configured level
*/
@Deprecated(since = "3.2.0", forRemoval = true)
public LoggerLevelsDescriptor(LogLevel configuredLevel) {
this.configuredLevel = (configuredLevel != null) ? configuredLevel.name() : null;
}
Expand All @@ -185,11 +173,6 @@ public LoggerLevelsDescriptor(LogLevel configuredLevel) {
this.configuredLevel = (directConfiguration != null) ? directConfiguration.getName() : null;
}

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

private final List<String> members;

/**
* @param configuredLevel
* @param members
*/
@Deprecated(since = "3.2.0", forRemoval = true)
public GroupLoggerLevelsDescriptor(LogLevel configuredLevel, List<String> members) {
super(configuredLevel);
this.members = members;
Expand All @@ -230,10 +208,6 @@ public static class SingleLoggerLevelsDescriptor extends LoggerLevelsDescriptor

private final String effectiveLevel;

/**
* @param configuration
*/
@Deprecated(since = "3.2.0", forRemoval = true)
public SingleLoggerLevelsDescriptor(LoggerConfiguration configuration) {
super(configuration.getLevelConfiguration(ConfigurationScope.DIRECT));
this.effectiveLevel = configuration.getLevelConfiguration().getName();
Expand Down

0 comments on commit 1de7edb

Please sign in to comment.