git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1129741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2011-05-31 15:10:50 +00:00
parent 0fc20ee183
commit 6fefadb620
1 changed files with 7 additions and 0 deletions

View File

@ -219,4 +219,11 @@ public class DestinationMap {
}
}
}
public void reset() {
queueRootNode = new DestinationMapNode(null);
tempQueueRootNode = new DestinationMapNode(null);
topicRootNode = new DestinationMapNode(null);
tempTopicRootNode = new DestinationMapNode(null);
}
}