[jboss-cvs] JBoss Messaging SVN: r1562 - branches/Branch_HTTP_Experiment/src/main/org/jboss/jms/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 14 19:29:40 EST 2006


Author: ron_sigal
Date: 2006-11-14 19:29:39 -0500 (Tue, 14 Nov 2006)
New Revision: 1562

Modified:
   branches/Branch_HTTP_Experiment/src/main/org/jboss/jms/server/DestinationJNDIMapper.java
Log:
http://jira.jboss.com/jira/browse/JBMESSAGING-625

Modified: branches/Branch_HTTP_Experiment/src/main/org/jboss/jms/server/DestinationJNDIMapper.java
===================================================================
--- branches/Branch_HTTP_Experiment/src/main/org/jboss/jms/server/DestinationJNDIMapper.java	2006-11-14 14:08:40 UTC (rev 1561)
+++ branches/Branch_HTTP_Experiment/src/main/org/jboss/jms/server/DestinationJNDIMapper.java	2006-11-15 00:29:39 UTC (rev 1562)
@@ -260,9 +260,9 @@
 
    public void stop() throws Exception
    {
-      Set queues = new HashSet(queueMap.keySet());
+      Set queues = new HashSet(queueMap.values());
       
-      Set topics = new HashSet(topicMap.keySet());
+      Set topics = new HashSet(topicMap.values());
       
       // remove all destinations from JNDI
       for(Iterator i = queues.iterator(); i.hasNext(); )




More information about the jboss-cvs-commits mailing list