AMQ-1454 fix destination wildcard

git-svn-id: https://svn.apache.org/repos/asf/activemq/branches/activemq-4.1@640629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
David Jencks 2008-03-24 22:58:25 +00:00
parent 808f84b9f7
commit 95e8157d78
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ abstract public class ActiveMQDestination extends JNDIBaseStorable implements Da
// If this is a pattern destination.
if( !isTemporary() && (
physicalName.indexOf("*")>=0 ||
physicalName.indexOf("<")>=0 ) ) {
physicalName.indexOf(">")>=0 ) ) {
isPattern = true;
}
}