You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/06 17:51:13 UTC

svn commit: r896526 - /commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java

Author: sebb
Date: Wed Jan  6 16:51:06 2010
New Revision: 896526

URL: http://svn.apache.org/viewvc?rev=896526&view=rev
Log:
No point deregistering Driver either; it has no instance data.
Also, the original driver that was registered statically will still be there.

Modified:
    commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java

Modified: commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java?rev=896526&r1=896525&r2=896526&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java (original)
+++ commons/proper/dbcp/trunk/src/test/org/apache/commons/dbcp/TestManual.java Wed Jan  6 16:51:06 2010
@@ -68,7 +68,6 @@
 
     public void tearDown() throws Exception {
         driver.closePool("test");
-        DriverManager.deregisterDriver(driver);
         super.tearDown();
     }