From 8491d2641b961b717f4e5c8642da589fee2f5694 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 5 Nov 2024 13:51:32 +0000 Subject: [PATCH] Remove netty specific channel factories --- .../grpc/client/NettyGrpcChannelFactory.java | 26 ------------------- .../client/ShadedNettyGrpcChannelFactory.java | 26 ------------------- 2 files changed, 52 deletions(-) delete mode 100644 spring-grpc-core/src/main/java/org/springframework/grpc/client/NettyGrpcChannelFactory.java delete mode 100644 spring-grpc-core/src/main/java/org/springframework/grpc/client/ShadedNettyGrpcChannelFactory.java diff --git a/spring-grpc-core/src/main/java/org/springframework/grpc/client/NettyGrpcChannelFactory.java b/spring-grpc-core/src/main/java/org/springframework/grpc/client/NettyGrpcChannelFactory.java deleted file mode 100644 index 5a42ec6..0000000 --- a/spring-grpc-core/src/main/java/org/springframework/grpc/client/NettyGrpcChannelFactory.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.client; - -import java.util.List; - -public class NettyGrpcChannelFactory extends DefaultGrpcChannelFactory { - - public NettyGrpcChannelFactory(List configurers) { - super(configurers); - } - -} diff --git a/spring-grpc-core/src/main/java/org/springframework/grpc/client/ShadedNettyGrpcChannelFactory.java b/spring-grpc-core/src/main/java/org/springframework/grpc/client/ShadedNettyGrpcChannelFactory.java deleted file mode 100644 index 94629df..0000000 --- a/spring-grpc-core/src/main/java/org/springframework/grpc/client/ShadedNettyGrpcChannelFactory.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.client; - -import java.util.List; - -public class ShadedNettyGrpcChannelFactory extends DefaultGrpcChannelFactory { - - public ShadedNettyGrpcChannelFactory(List configurers) { - super(configurers); - } - -}