Merge "Remove dead code trying to default to JDBC"

This commit is contained in:
Shawn O. Pearce
2011-10-26 18:00:59 -07:00
committed by gerrit code review

View File

@@ -87,11 +87,7 @@ public final class DataSourceProvider implements Provider<DataSource>,
if (url == null || url.isEmpty()) {
if (type == null) {
if (url != null && !url.isEmpty()) {
type = Type.JDBC;
} else {
type = Type.H2;
}
type = Type.H2;
}
switch (type) {