diff options
author | Tom Davis <tom@recursivedream.com> | 2017-01-31 12:01:50 -0500 |
---|---|---|
committer | Jens Geyer <jensg@apache.org> | 2017-01-31 21:31:58 +0100 |
commit | 34bd992bc3104517062482ec837d4b49d33963ef (patch) | |
tree | 232a9fd28ae6092b2b7311cbf4376cb29c33393a /lib | |
parent | feea47852c50f502139952b7fa96cc71c45690bf (diff) | |
download | thrift-34bd992bc3104517062482ec837d4b49d33963ef.tar.gz |
THRIFT-4062 Remove debug print from TServiceClient
Client: Java
Patch: Tom Davis <tom@recursivedream.com>
This closes #1173
Diffstat (limited to 'lib')
-rw-r--r-- | lib/java/src/org/apache/thrift/TServiceClient.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/java/src/org/apache/thrift/TServiceClient.java b/lib/java/src/org/apache/thrift/TServiceClient.java index 6619b9ce6..00a36ee7f 100644 --- a/lib/java/src/org/apache/thrift/TServiceClient.java +++ b/lib/java/src/org/apache/thrift/TServiceClient.java @@ -81,7 +81,6 @@ public abstract class TServiceClient { iprot_.readMessageEnd(); throw x; } - System.out.format("Received %d%n", msg.seqid); if (msg.seqid != seqid_) { throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID, String.format("%s failed: out of sequence response: expected %d but got %d", methodName, seqid_, msg.seqid)); |