RESOLVED - BATCH-1856: ExtendedConnectionDataSourceProxy compilation

error in JDK 7

trivial implementation of the new getParentLogger() method
This commit is contained in:
Robert Kasanicky
2012-05-06 20:57:07 +02:00
parent aa1c382c4c
commit fd00ae62c1
2 changed files with 12 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.logging.Logger;
import javax.sql.DataSource;
@@ -321,4 +323,8 @@ public class ExtendedConnectionDataSourceProxy implements SmartDataSource, Initi
Assert.notNull(dataSource);
}
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
throw new SQLFeatureNotSupportedException();
}
}