You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2007/05/15 10:02:43 UTC

svn commit: r538084 - /incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java

Author: ritchiem
Date: Tue May 15 01:02:42 2007
New Revision: 538084

URL: http://svn.apache.org/viewvc?view=rev&rev=538084
Log:
QPID-466 Removed Unsupported exception from setIntProperty with STRICT_AMQP set

Modified:
    incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java

Modified: incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java?view=diff&rev=538084&r1=538083&r2=538084
==============================================================================
--- incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java (original)
+++ incubator/qpid/branches/M2/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java Tue May 15 01:02:42 2007
@@ -467,11 +467,6 @@
 
     public void setIntProperty(String propertyName, int i) throws JMSException
     {
-        if (_strictAMQP)
-        {
-            throw new UnsupportedOperationException("JMS Proprerties not supported in AMQP");
-        }
-
         checkWritableProperties();
         JMSHeaderAdapter.checkPropertyName(propertyName);
         super.setIntProperty(new AMQShortString(propertyName), new Integer(i));