You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ac...@apache.org on 2006/03/13 04:20:20 UTC

svn commit: r385419 - in /incubator/activemq/trunk: activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java project.properties

Author: aco
Date: Sun Mar 12 19:20:18 2006
New Revision: 385419

URL: http://svn.apache.org/viewcvs?rev=385419&view=rev
Log:
- Remove 1.5 dependency
- Added activemq-optional to multi-project.

Modified:
    incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java
    incubator/activemq/trunk/project.properties

Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java?rev=385419&r1=385418&r2=385419&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java (original)
+++ incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormatFactory.java Sun Mar 12 19:20:18 2006
@@ -47,7 +47,9 @@
 			info.setTightEncodingEnabled(tightEncodingEnabled);
 			info.setSizePrefixDisabled(sizePrefixDisabled);
 		} catch (Exception e) {
-			throw new IllegalStateException("Could not configure WireFormatInfo", e);
+			IllegalStateException ise = new IllegalStateException("Could not configure WireFormatInfo");
+            ise.initCause(e);
+            throw ise;
 		}
 		
         OpenWireFormat f = new OpenWireFormat();

Modified: incubator/activemq/trunk/project.properties
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/project.properties?rev=385419&r1=385418&r2=385419&view=diff
==============================================================================
--- incubator/activemq/trunk/project.properties (original)
+++ incubator/activemq/trunk/project.properties Sun Mar 12 19:20:18 2006
@@ -13,6 +13,7 @@
 activemq-ra/project.xml,\
 activemq-web/project.xml,\
 activemq-console/project.xml,\
+activemq-optional/project.xml,\
 assembly/project.xml
 #activeio/project.xml,\
 #activemq-systest/project.xml,\