Skip to content

Commit

Permalink
remove log output
Browse files Browse the repository at this point in the history
  • Loading branch information
darkv committed Nov 5, 2013
1 parent fd1acac commit d18392b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1649,12 +1649,10 @@ else if (databaseProductName.equalsIgnoreCase("microsoft")) {
sqlHelper = new MicrosoftSQLHelper();
}
else if (databaseProductName.equalsIgnoreCase("h2")) {
log.warn("H2Helper");
sqlHelper = new H2SQLHelper();

}
else if (databaseProductName.equalsIgnoreCase("db2")) {
sqlHelper = new DB2SQLHelper();
sqlHelper = new DB2SQLHelper();
}
else if (databaseProductName.equalsIgnoreCase("firebird")) {
sqlHelper = new FirebirdSQLHelper();
Expand Down

0 comments on commit d18392b

Please sign in to comment.