[jOOQ/jOOQ#10640] Remove unneeded private DSL constructors

This commit is contained in:
Lukas Eder 2020-09-17 12:10:47 +02:00
parent ca8d516e60
commit b7fc8fc900

View File

@ -26136,70 +26136,4 @@ public class DSL {
protected DSL() {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(Connection connection, SQLDialect dialect) {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(Connection connection, SQLDialect dialect, Settings settings) {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(DataSource datasource, SQLDialect dialect) {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(DataSource datasource, SQLDialect dialect, Settings settings) {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(SQLDialect dialect) {
throw new UnsupportedOperationException();
}
/**
* This constructor is no longer available in jOOQ 3.0.
* <p>
* <a href="http://www.jooq.org/doc/3.0/manual/reference/migrating-to-3.0/"
* >See the jOOQ manual's section about migrating to jOOQ 3.0</a>
*/
@SuppressWarnings("unused")
private DSL(SQLDialect dialect, Settings settings) {
throw new UnsupportedOperationException();
}
}