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));


Reply via email to