#508 - Upgrading to 6.13.5 causes "No suitable driver found for jdbc:mysql" error

This commit is contained in:
Robin Bygrave
2016-01-08 00:18:20 +13:00
parent 343a975073
commit 1ec132b7dd
3 changed files with 19 additions and 12 deletions
@@ -23,7 +23,7 @@ public class ClassUtil {
/**
* Load a class taking into account a context class loader (if present).
*/
private static Class<?> forName(String name) throws ClassNotFoundException {
public static Class<?> forName(String name) throws ClassNotFoundException {
return new ClassLoadContext().forName(name);
}