You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/07/04 15:08:25 UTC

svn commit: r553197 - /activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp

Author: tabish
Date: Wed Jul  4 06:08:24 2007
New Revision: 553197

URL: http://svn.apache.org/viewvc?view=rev&rev=553197
Log:
minor code cleanup

Modified:
    activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp

Modified: activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp?view=diff&rev=553197&r1=553196&r2=553197
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp (original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/OpenWireFormat.cpp Wed Jul  4 06:08:24 2007
@@ -82,7 +82,7 @@
         delete preferedWireFormatInfo;
     }
     AMQ_CATCH_NOTHROW( ActiveMQException )
-    AMQ_CATCHALL_NOTHROW( )
+    AMQ_CATCHALL_NOTHROW()
 }
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -347,7 +347,7 @@
 
 ////////////////////////////////////////////////////////////////////////////////
 DataStructure* OpenWireFormat::tightUnmarshalNestedObject( DataInputStream* dis,
-                                                           BooleanStream* bs)
+                                                           BooleanStream* bs )
     throw ( io::IOException ) {
 
     try {
@@ -386,7 +386,6 @@
         } else {
             return NULL;
         }
-
     }
     AMQ_CATCH_RETHROW( IOException )
     AMQ_CATCH_EXCEPTION_CONVERT( ActiveMQException, IOException )
@@ -484,5 +483,4 @@
                                  preferedWireFormatInfo->isTightEncodingEnabled();
     this->sizePrefixDisabled = info->isSizePrefixDisabled() &&
                                preferedWireFormatInfo->isSizePrefixDisabled();
-
 }