Author: shuston Date: Thu Oct 29 23:58:39 2009 New Revision: 831160 URL: http://svn.apache.org/viewvc?rev=831160&view=rev Log: Remove extraneous space from exception message.
Modified: qpid/trunk/qpid/cpp/src/qpid/framing/FieldTable.cpp Modified: qpid/trunk/qpid/cpp/src/qpid/framing/FieldTable.cpp URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/framing/FieldTable.cpp?rev=831160&r1=831159&r2=831160&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/framing/FieldTable.cpp (original) +++ qpid/trunk/qpid/cpp/src/qpid/framing/FieldTable.cpp Thu Oct 29 23:58:39 2009 @@ -218,7 +218,7 @@ if (len) { uint32_t available = buffer.available(); if (available < len) - throw IllegalArgumentException(QPID_MSG("Not enough data for field table.")); + throw IllegalArgumentException(QPID_MSG("Not enough data for field table.")); uint32_t count = buffer.getLong(); uint32_t leftover = available - len; while(buffer.available() > leftover && count--){ --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscr...@qpid.apache.org