Skip to content

Commit

Permalink
Update DBPlugin to allow Play to be compile with Java 7
Browse files Browse the repository at this point in the history
  • Loading branch information
chungonn committed Apr 7, 2014
1 parent d251523 commit 94b4175
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions framework/src/play/db/DBPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,12 @@ public DriverPropertyInfo[] getPropertyInfo(String u, Properties p) throws SQLEx
public boolean jdbcCompliant() {
return this.driver.jdbcCompliant();
}

@Override
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
return null;
}

}

public static class PlayConnectionCustomizer implements ConnectionCustomizer {
Expand Down

0 comments on commit 94b4175

Please sign in to comment.