diff --git a/native-image-support/src/main/java/com/google/cloud/nativeimage/features/ProtobufMessageFeature.java b/native-image-support/src/main/java/com/google/cloud/nativeimage/features/ProtobufMessageFeature.java deleted file mode 100644 index 40251e85e4..0000000000 --- a/native-image-support/src/main/java/com/google/cloud/nativeimage/features/ProtobufMessageFeature.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Copyright 2022 Google LLC - * - * 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 com.google.cloud.nativeimage.features; - -import java.lang.reflect.Method; -import java.util.Arrays; -import java.util.List; -import org.graalvm.nativeimage.hosted.Feature; -import org.graalvm.nativeimage.hosted.RuntimeReflection; - -/** - * A optional feature which registers reflective usages of the GRPC Protobuf libraries. - * - *
This feature is only needed if you need to access proto objects reflectively (such as - * printing/logging proto objects). - * - *
To add this feature, add "--feature
- * com.google.cloud.nativeimage.features.ProtobufMessageFeature" to your GraalVM configuration.
- */
-final class ProtobufMessageFeature implements Feature {
-
- // Proto classes to check on the classpath.
- private static final String PROTO_MESSAGE_CLASS = "com.google.protobuf.GeneratedMessageV3";
- private static final String PROTO_ENUM_CLASS = "com.google.protobuf.ProtocolMessageEnum";
- private static final String ENUM_VAL_DESCRIPTOR_CLASS =
- "com.google.protobuf.Descriptors$EnumValueDescriptor";
-
- // Prefixes of methods accessed reflectively by
- // com.google.protobuf.GeneratedMessageV3$ReflectionInvoker
- private static final List