svn commit: r1619978 - /ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1619978 - /ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java

jacopoc
Author: jacopoc
Date: Sat Aug 23 07:32:08 2014
New Revision: 1619978

URL: http://svn.apache.org/r1619978
Log:
Removed unused method.

Modified:
    ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java

Modified: ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java?rev=1619978&r1=1619977&r2=1619978&view=diff
==============================================================================
--- ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java (original)
+++ ofbiz/branches/framework-api-cleanup/framework/entity/src/org/ofbiz/entity/jdbc/ConnectionFactory.java Sat Aug 23 07:32:08 2014
@@ -133,11 +133,4 @@ public class ConnectionFactory {
             }
         }
     }
-
-    public static void unloadDriver(String driverName) throws SQLException {
-        Driver driver = DriverManager.getDriver(driverName);
-        if (driver != null) {
-            DriverManager.deregisterDriver(driver);
-        }
-    }
 }