Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 10222 invoked from network); 20 Dec 2009 20:21:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Dec 2009 20:21:58 -0000 Received: (qmail 2411 invoked by uid 500); 20 Dec 2009 20:21:58 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 2309 invoked by uid 500); 20 Dec 2009 20:21:58 -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 2300 invoked by uid 99); 20 Dec 2009 20:21:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Dec 2009 20:21:58 +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; Sun, 20 Dec 2009 20:21:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6A56323889FA; Sun, 20 Dec 2009 20:21:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r892655 - /commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java Date: Sun, 20 Dec 2009 20:21:35 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091220202135.6A56323889FA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sun Dec 20 20:21:34 2009 New Revision: 892655 URL: http://svn.apache.org/viewvc?rev=892655&view=rev Log: Restored jdk 1.4 compatability (reverting change in r563171. Modified: commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java Modified: commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java?rev=892655&r1=892654&r2=892655&view=diff ============================================================================== --- commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java (original) +++ commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestJOCLed.java Sun Dec 20 20:21:34 2009 @@ -30,6 +30,9 @@ public class TestJOCLed extends TestConnectionPool { public TestJOCLed(String testName) { super(testName); + if(null == System.getProperty("org.xml.sax.driver")) { + System.setProperty("org.xml.sax.driver","org.apache.xerces.parsers.SAXParser"); + } } public static Test suite() {