Skip to content

Commit

Permalink
Remove unused overloads
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannic committed Jul 2, 2020
1 parent 14b2291 commit 9c9072b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions javascript/net/grpc/web/grpc_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,6 @@ string JSElementType(const FieldDescriptor *desc, const FileDescriptor *file) {
}
}

string JSElementType(const FieldDescriptor *desc) {
return JSElementType(desc, nullptr);
}

string JSFieldType(const FieldDescriptor *desc, const FileDescriptor *file) {
string js_field_type = JSElementType(desc, file);
if (desc->is_map()) {
Expand Down Expand Up @@ -420,10 +416,6 @@ string AsObjectFieldType(
return field_type;
}

string AsObjectFieldType(const FieldDescriptor *desc) {
return AsObjectFieldType(desc, nullptr);
}

string JSElementName(const FieldDescriptor *desc) {
return ToUpperCamel(ParseLowerUnderscore(desc->name()));
}
Expand Down

0 comments on commit 9c9072b

Please sign in to comment.