applied patch for AMQ-1128

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@511912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-02-26 17:34:15 +00:00
parent cbb458ce8b
commit c3fd0a65b1
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class VMTransportFactory extends TransportFactory{
Map brokerOptions=IntrospectionSupport.extractProperties(options,"broker.");
brokerURI=new URI("broker://()/"+host+"?"+URISupport.createQueryString(brokerOptions));
}
if( "false".equals(options.get("create")) ) {
if( "false".equals(options.remove("create")) ) {
create=false;
}
}catch(URISyntaxException e1){