From c04800aca4bd9a613db110d5737ecb500fb5b801 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Sun, 22 Sep 2024 13:17:59 -0500 Subject: [PATCH] Remove unused GrpcServiceDiscoverer --- .../server/GrpcServiceDiscoverer.java | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServiceDiscoverer.java diff --git a/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServiceDiscoverer.java b/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServiceDiscoverer.java deleted file mode 100644 index aceb4b7..0000000 --- a/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServiceDiscoverer.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2024-2024 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. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.springframework.grpc.autoconfigure.server; - -import java.util.Collection; - -import io.grpc.ServerServiceDefinition; - -public interface GrpcServiceDiscoverer { - - public Collection findGrpcServices(); - -}