fix typo in optimisation that was breaking the virtual topic tests

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@515175 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-03-06 16:28:10 +00:00
parent 8011f907ef
commit 800fba7f6c
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ abstract public class ActiveMQDestination extends JNDIBaseStorable implements Da
// won't be wild card
isPattern=false;
composite=true;
}else if(!composite&&(c=='*'||c=='.')){
}else if(!composite&&(c=='*'||c=='>')){
isPattern=true;
}
}