commit | 7dafc94e50081abbcde4602cf84863fdfbf9c269 | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | Thu Aug 09 03:40:15 2007 +0000 |
committer | Mark Slee <mcslee@apache.org> | Thu Aug 09 03:40:15 2007 +0000 |
tree | fd1eeb62906b12dd19f9fb6b5166ff3363cce34d | |
parent | 7e2cda13166e5cc27f37c55647b4070f5df178a5 [diff] [blame] |
Fix Java test cases 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
diff --git a/test/java/src/TestClient.java b/test/java/src/TestClient.java index 8b1cc10..778bb16 100644 --- a/test/java/src/TestClient.java +++ b/test/java/src/TestClient.java
@@ -71,7 +71,7 @@ } TBinaryProtocol binaryProtocol = - new TBinaryProtocol(transport, false, false); + new TBinaryProtocol(transport); ThriftTest.Client testClient = new ThriftTest.Client(binaryProtocol);