Skip to content

Commit

Permalink
GEODE-7864: Removed unused logConfigListeners in InternalLocator (apa…
Browse files Browse the repository at this point in the history
  • Loading branch information
nabarunnag authored Mar 29, 2020
1 parent 472e2e7 commit 10c98e0
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
Expand Down Expand Up @@ -171,7 +170,6 @@ public class InternalLocator extends Locator implements ConnectListener, LogConf
private final LocatorMembershipListener locatorListener;
private final AtomicBoolean shutdownHandled = new AtomicBoolean(false);
private final LoggingSession loggingSession;
private final Set<LogConfigListener> logConfigListeners = new HashSet<>();
private final LocatorStats locatorStats;
private final Path workingDirectory;
private final MembershipLocator<InternalDistributedMember> membershipLocator;
Expand Down Expand Up @@ -1303,14 +1301,10 @@ public StatisticsConfig getStatisticsConfig() {
}

@Override
public void addLogConfigListener(LogConfigListener logConfigListener) {
logConfigListeners.add(logConfigListener);
}
public void addLogConfigListener(LogConfigListener logConfigListener) {}

@Override
public void removeLogConfigListener(LogConfigListener logConfigListener) {
logConfigListeners.remove(logConfigListener);
}
public void removeLogConfigListener(LogConfigListener logConfigListener) {}

public SharedConfigurationStatusResponse getSharedConfigurationStatus() {
ExecutorService waitingPoolExecutor =
Expand Down

0 comments on commit 10c98e0

Please sign in to comment.