Skip to content

Commit

Permalink
Don't alter the capitalization of the generated files.
Browse files Browse the repository at this point in the history
Instead, we just match the name (case-wise) of the original .proto file.
  • Loading branch information
Jon Parise committed Oct 13, 2010
1 parent 19d5f01 commit bf7da01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/objc_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ namespace google { namespace protobuf { namespace compiler { namespace objective
basename += file->name().substr(last_slash + 1);
}

return UnderscoresToCapitalizedCamelCase(StripProto(basename));
return StripProto(basename);
}


Expand Down

0 comments on commit bf7da01

Please sign in to comment.