You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2007/01/18 17:14:10 UTC

svn commit: r497483 - /incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java

Author: kpvdr
Date: Thu Jan 18 08:14:09 2007
New Revision: 497483

URL: http://svn.apache.org/viewvc?view=rev&rev=497483
Log:
Fixed minor bug in AMQResponseBody.toString()

Modified:
    incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java

Modified: incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java?view=diff&rev=497483&r1=497482&r2=497483
==============================================================================
--- incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java (original)
+++ incubator/qpid/branches/qpid.0-9/java/common/src/main/java/org/apache/qpid/framing/AMQResponseBody.java Thu Jan 18 08:14:09 2007
@@ -82,7 +82,7 @@
     
     public String toString()
     {
-        return "Res[" + responseId + " " + requestId + "-" + requestId + batchOffset + "] C" +
+        return "Res[" + responseId + " " + requestId + "-" + (requestId + batchOffset) + "] C" +
             methodPayload.getClazz() + " M" + methodPayload.getMethod();
     }