From 297cbc84e777d48c2111baa688ba46383c068067 Mon Sep 17 00:00:00 2001 From: Rupert Smith Date: Thu, 17 May 2007 15:32:18 +0000 Subject: Merged revisions 538084-538097,538099-538108,538110-538906,538908-538912 via svnmerge from https://svn.apache.org/repos/asf/incubator/qpid/branches/M2 ........ r538084 | ritchiem | 2007-05-15 09:02:42 +0100 (Tue, 15 May 2007) | 1 line QPID-466 Removed Unsupported exception from setIntProperty with STRICT_AMQP set ........ r538240 | ritchiem | 2007-05-15 17:19:01 +0100 (Tue, 15 May 2007) | 6 lines QPID-3 Topic Matching with tests A simple naive approach. Similar to C++ to be included for M2. More elaborate pre-evaluated version will have to wait. Once benchmarks have been performed we can evaluate performance advantages if any of that approach. ........ r538882 | ritchiem | 2007-05-17 13:12:34 +0100 (Thu, 17 May 2007) | 3 lines Fix for broken CSDM message purging routine that was causing python test_get to fail. Replaced long while control with a method call that is easier to understand and has more comments. ........ r538912 | ritchiem | 2007-05-17 14:26:25 +0100 (Thu, 17 May 2007) | 2 lines Fixed failing python tests. The rather annoying way we unsubscribe subscribers by creating new ones was causing a problem as the closing channel had been closed before the unsubscribe call. Java now passes all python tests ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@538968 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/qpid/client/message/AbstractJMSMessage.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'qpid/java/client/src/main') diff --git a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java b/qpid/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java index 11102e0925..13f544516a 100644 --- a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java +++ b/qpid/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java @@ -467,11 +467,6 @@ public abstract class AbstractJMSMessage extends AMQMessage implements org.apach 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)); -- cgit v1.2.1