File tree Expand file tree Collapse file tree 2 files changed +0
-63
lines changed
main/java/com/salesforce/jprotoc
test/java/com/salesforce/jprotoc Expand file tree Collapse file tree 2 files changed +0
-63
lines changed Original file line number Diff line number Diff line change @@ -103,24 +103,6 @@ public String toJavaTypeName(@Nonnull String protoTypeName) {
103103 return types .get (protoTypeName );
104104 }
105105
106- /**
107- * Returns the full Java type name based on the given protobuf type parameters.
108- *
109- * @param className the protobuf type name
110- * @param enclosingClassName the optional enclosing class for the given type
111- * @param javaPackage the proto file's configured java package name
112- */
113- public static String toJavaTypeName (
114- @ Nonnull String className ,
115- @ Nullable String enclosingClassName ,
116- @ Nullable String javaPackage ) {
117-
118- Preconditions .checkNotNull (className , "className" );
119-
120- Joiner dotJoiner = Joiner .on ('.' ).skipNulls ();
121- return dotJoiner .join (javaPackage , enclosingClassName , className );
122- }
123-
124106 private static String getJavaOuterClassname (
125107 DescriptorProtos .FileDescriptorProto fileDescriptor ,
126108 DescriptorProtos .FileOptions fileOptions ) {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments