Summary: Use the default TBinaryProtocol constructors for better example.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665197
13f79535-47bb-0310-9956-
ffa450edef68
}
TBinaryProtocol binaryProtocol =
- new TBinaryProtocol(transport, false, false);
+ new TBinaryProtocol(transport);
ThriftTest.Client testClient =
new ThriftTest.Client(binaryProtocol);
// Protocol factory
TProtocolFactory tProtocolFactory =
- new TBinaryProtocol.Factory(true, true);
+ new TBinaryProtocol.Factory();
TServer serverEngine;