Summary: If in a container, use Byte not byte
Reviewed By: dreiss
Test Plan: Generate a list of bytes
Other Notes: based upon Kyle's submission
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665417
13f79535-47bb-0310-9956-
ffa450edef68
case t_base_type::TYPE_BOOL:
return (in_container ? "Boolean" : "boolean");
case t_base_type::TYPE_BYTE:
- return "byte";
+ return (in_container ? "Byte" : "byte");
case t_base_type::TYPE_I16:
return (in_container ? "Short" : "short");
case t_base_type::TYPE_I32: