fully qualify invocations of static methods on GeneratedMessage
This commit is contained in:
parent
f3c75580e4
commit
60654349e7
1 changed files with 6 additions and 6 deletions
|
@ -664,34 +664,34 @@ GenerateParseFromMethods(io::Printer* printer) {
|
|||
"}\n"
|
||||
"public static $classname$ parseFrom(java.io.InputStream input)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseWithIOException(PARSER, input);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input);"
|
||||
"}\n"
|
||||
"public static $classname$ parseFrom(\n"
|
||||
" java.io.InputStream input,\n"
|
||||
" com.google.protobuf.ExtensionRegistryLite extensionRegistry)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseWithIOException(PARSER, input, extensionRegistry);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input, extensionRegistry);"
|
||||
"}\n"
|
||||
"public static $classname$ parseDelimitedFrom(java.io.InputStream input)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseDelimitedWithIOException(PARSER, input);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException(PARSER, input);"
|
||||
"}\n"
|
||||
"public static $classname$ parseDelimitedFrom(\n"
|
||||
" java.io.InputStream input,\n"
|
||||
" com.google.protobuf.ExtensionRegistryLite extensionRegistry)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseDelimitedWithIOException(PARSER, input, extensionRegistry);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException(PARSER, input, extensionRegistry);"
|
||||
"}\n"
|
||||
"public static $classname$ parseFrom(\n"
|
||||
" com.google.protobuf.CodedInputStream input)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseWithIOException(PARSER, input);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input);"
|
||||
"}\n"
|
||||
"public static $classname$ parseFrom(\n"
|
||||
" com.google.protobuf.CodedInputStream input,\n"
|
||||
" com.google.protobuf.ExtensionRegistryLite extensionRegistry)\n"
|
||||
" throws java.io.IOException {\n"
|
||||
" return parseWithIOException(PARSER, input, extensionRegistry);"
|
||||
" return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input, extensionRegistry);"
|
||||
"}\n"
|
||||
"\n",
|
||||
"classname", name_resolver_->GetImmutableClassName(descriptor_));
|
||||
|
|
Loading…
Add table
Reference in a new issue