From commits-return-17401-apmail-activemq-commits-archive=activemq.apache.org@activemq.apache.org Fri Dec 2 15:42:02 2011 Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 20F189961 for ; Fri, 2 Dec 2011 15:42:02 +0000 (UTC) Received: (qmail 36368 invoked by uid 500); 2 Dec 2011 15:42:02 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 36308 invoked by uid 500); 2 Dec 2011 15:42:01 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 36281 invoked by uid 99); 2 Dec 2011 15:42:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2011 15:42:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2011 15:42:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DF14B23888FD for ; Fri, 2 Dec 2011 15:41:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1209538 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java Date: Fri, 02 Dec 2011 15:41:39 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111202154139.DF14B23888FD@eris.apache.org> Author: gtully Date: Fri Dec 2 15:41:39 2011 New Revision: 1209538 URL: http://svn.apache.org/viewvc?rev=1209538&view=rev Log: fix typo in last remove, oops sorry Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java?rev=1209538&r1=1209537&r2=1209538&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/RegionBroker.java Fri Dec 2 15:41:39 2011 @@ -330,8 +330,10 @@ public class RegionBroker extends EmptyB topicRegion.removeDestination(context, destination, timeout); break; case ActiveMQDestination.TEMP_QUEUE_TYPE: + tempQueueRegion.removeDestination(context, destination, timeout); break; case ActiveMQDestination.TEMP_TOPIC_TYPE: + tempTopicRegion.removeDestination(context, destination, timeout); break; default: throw createUnknownDestinationTypeException(destination);