[jOOQ/jOOQ#11618] Deprecate JDBC41Connection, JDBC41Statement, JDBC41ResultSet

This commit is contained in:
Lukas Eder 2021-03-11 15:02:21 +01:00
parent e4c09cbea1
commit fe98033680
3 changed files with 9 additions and 0 deletions

View File

@ -48,7 +48,10 @@ import java.util.concurrent.Executor;
* both JDBC 4.0 (JDK 6) and 4.1 (JDK 7).
*
* @author Lukas Eder
* @deprecated - 3.15.0 - [#11618] - This type is no longer used by jOOQ and
* will be removed in the future.
*/
@Deprecated
public abstract class JDBC41Connection {
// JDBC 4.1 compliance: @Override

View File

@ -47,7 +47,10 @@ import java.sql.SQLException;
* both JDBC 4.0 (JDK 6) and 4.1 (JDK 7).
*
* @author Lukas Eder
* @deprecated - 3.15.0 - [#11618] - This type is no longer used by jOOQ and
* will be removed in the future.
*/
@Deprecated
public abstract class JDBC41ResultSet {
// JDBC 4.1 compliance: @Override

View File

@ -50,7 +50,10 @@ import java.sql.Statement;
* both JDBC 4.0 (JDK 6) and 4.1 (JDK 7).
*
* @author Lukas Eder
* @deprecated - 3.15.0 - [#11618] - This type is no longer used by jOOQ and
* will be removed in the future.
*/
@Deprecated
public abstract class JDBC41Statement {
// ------------------------------------------------------------------------