Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1DC12F429 for ; Sun, 24 Mar 2013 20:24:49 +0000 (UTC) Received: (qmail 17171 invoked by uid 500); 24 Mar 2013 20:24:48 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 17101 invoked by uid 500); 24 Mar 2013 20:24:48 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 17094 invoked by uid 99); 24 Mar 2013 20:24:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Mar 2013 20:24:48 +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; Sun, 24 Mar 2013 20:24:47 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6EEC9238897F; Sun, 24 Mar 2013 20:24:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1460458 - /commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java Date: Sun, 24 Mar 2013 20:24:27 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130324202427.6EEC9238897F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: oheger Date: Sun Mar 24 20:24:26 2013 New Revision: 1460458 URL: http://svn.apache.org/r1460458 Log: TestPropertiesConfigurationEvents does not check events of file configurations any more. Modified: commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java Modified: commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java?rev=1460458&r1=1460457&r2=1460458&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java (original) +++ commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration/event/TestPropertiesConfigurationEvents.java Sun Mar 24 20:24:26 2013 @@ -17,8 +17,6 @@ package org.apache.commons.configuration.event; import java.io.File; -import java.io.IOException; -import java.net.URL; import org.apache.commons.configuration.AbstractConfiguration; import org.apache.commons.configuration.ConfigurationAssert; @@ -31,7 +29,7 @@ import org.apache.commons.configuration. * @version $Id$ */ public class TestPropertiesConfigurationEvents extends - AbstractTestFileConfigurationEvents + AbstractTestConfigurationEvents { /** The file to be loaded.*/ static final File TEST_FILE = ConfigurationAssert.getTestFile("test.properties"); @@ -41,10 +39,4 @@ public class TestPropertiesConfiguration { return new PropertiesConfiguration(); } - - @Override - protected URL getSourceURL() throws IOException - { - return TEST_FILE.toURI().toURL(); - } }