From commits-return-17724-apmail-activemq-commits-archive=activemq.apache.org@activemq.apache.org Thu Jan 19 13:33:21 2012 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 5ABF397E8 for ; Thu, 19 Jan 2012 13:33:21 +0000 (UTC) Received: (qmail 79517 invoked by uid 500); 19 Jan 2012 13:33:19 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 79259 invoked by uid 500); 19 Jan 2012 13:33:18 -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 79184 invoked by uid 99); 19 Jan 2012 13:33:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jan 2012 13:33:18 +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; Thu, 19 Jan 2012 13:33:16 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6874D23888FE for ; Thu, 19 Jan 2012 13:32:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1233366 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java Date: Thu, 19 Jan 2012 13:32:54 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120119133254.6874D23888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gtully Date: Thu Jan 19 13:32:53 2012 New Revision: 1233366 URL: http://svn.apache.org/viewvc?rev=1233366&view=rev Log: findbugs: fix infinite recursion - remove unused method Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java?rev=1233366&r1=1233365&r2=1233366&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/advisory/AdvisorySupport.java Thu Jan 19 13:32:53 2012 @@ -197,10 +197,6 @@ public final class AdvisorySupport { return new ActiveMQTopic(name); } - public static ActiveMQTopic getMasterBrokerAdvisoryTopic(Destination destination) throws JMSException { - return getMasterBrokerAdvisoryTopic(ActiveMQMessageTransformation.transformDestination(destination)); - } - public static ActiveMQTopic getMasterBrokerAdvisoryTopic() { return new ActiveMQTopic(MASTER_BROKER_TOPIC_PREFIX); }