summaryrefslogtreecommitdiff
path: root/java/client
diff options
context:
space:
mode:
authorRupert Smith <rupertlssmith@apache.org>2007-05-17 15:32:18 +0000
committerRupert Smith <rupertlssmith@apache.org>2007-05-17 15:32:18 +0000
commitee94c939a9d77f0de6ae0cb33c782a9015bb8452 (patch)
tree05558bbb1d3bd6386d54da85895bdc239475f1de /java/client
parentc135260a07f847965dae618315b379f02b8a0b52 (diff)
downloadqpid-python-ee94c939a9d77f0de6ae0cb33c782a9015bb8452.tar.gz
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/qpid@538968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
-rw-r--r--java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java b/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java
index 11102e0925..13f544516a 100644
--- a/java/client/src/main/java/org/apache/qpid/client/message/AbstractJMSMessage.java
+++ b/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));