Return-Path: Delivered-To: apmail-incubator-ace-commits-archive@minotaur.apache.org Received: (qmail 28195 invoked from network); 9 Jul 2009 13:02:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Jul 2009 13:02:13 -0000 Received: (qmail 93909 invoked by uid 500); 9 Jul 2009 12:36:02 -0000 Delivered-To: apmail-incubator-ace-commits-archive@incubator.apache.org Received: (qmail 93898 invoked by uid 500); 9 Jul 2009 12:36:02 -0000 Mailing-List: contact ace-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ace-dev@incubator.apache.org Delivered-To: mailing list ace-commits@incubator.apache.org Received: (qmail 93888 invoked by uid 99); 9 Jul 2009 12:36:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 12:36:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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, 09 Jul 2009 12:36:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 872322388877; Thu, 9 Jul 2009 12:35:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r792530 - /incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java Date: Thu, 09 Jul 2009 12:35:40 -0000 To: ace-commits@incubator.apache.org From: marrs@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090709123540.872322388877@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: marrs Date: Thu Jul 9 12:35:40 2009 New Revision: 792530 URL: http://svn.apache.org/viewvc?rev=792530&view=rev Log: Forgot a '.' in the names of two properties. Modified: incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java Modified: incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java?rev=792530&r1=792529&r2=792530&view=diff ============================================================================== --- incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java (original) +++ incubator/ace/trunk/gateway/src/org/apache/ace/configurator/Activator.java Thu Jul 9 12:35:40 2009 @@ -31,8 +31,8 @@ public void init(BundleContext context, DependencyManager manager) throws Exception { manager.add(createService() .setImplementation(new Configurator(new File( - getProperty(context.getProperty(Activator.class.getPackage().getName() + "CONFIG_DIR"), "conf")), - getProperty(context.getProperty(Activator.class.getPackage().getName() + "POLL_INTERVAL"), 2000))) + getProperty(context.getProperty(Activator.class.getPackage().getName() + ".CONFIG_DIR"), "conf")), + getProperty(context.getProperty(Activator.class.getPackage().getName() + ".POLL_INTERVAL"), 2000))) .add(createServiceDependency() .setService(ConfigurationAdmin.class) .setRequired(true))