Commit f12c7ab3 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Remove an unnecessary method in EndpointDiscoverer

Closes gh-12284
parent 0f652cdf
......@@ -26,7 +26,6 @@ import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
......@@ -317,10 +316,6 @@ public abstract class EndpointDiscoverer<E extends ExposableEndpoint<O>, O exten
.get();
}
public <A, B> void doIt(Function<A, B> x) {
}
private E getFilterEndpoint(EndpointBean endpointBean) {
E endpoint = this.filterEndpoints.get(endpointBean);
if (endpoint == null) {
......
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