From b7fc8fc9003c3a619cfe43569893e974f0242e1f Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 17 Sep 2020 12:10:47 +0200 Subject: [PATCH] [jOOQ/jOOQ#10640] Remove unneeded private DSL constructors --- jOOQ/src/main/java/org/jooq/impl/DSL.java | 66 ----------------------- 1 file changed, 66 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index 196e443425..376966f74b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -26136,70 +26136,4 @@ public class DSL { protected DSL() { throw new UnsupportedOperationException(); } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(Connection connection, SQLDialect dialect) { - throw new UnsupportedOperationException(); - } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(Connection connection, SQLDialect dialect, Settings settings) { - throw new UnsupportedOperationException(); - } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(DataSource datasource, SQLDialect dialect) { - throw new UnsupportedOperationException(); - } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(DataSource datasource, SQLDialect dialect, Settings settings) { - throw new UnsupportedOperationException(); - } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(SQLDialect dialect) { - throw new UnsupportedOperationException(); - } - - /** - * This constructor is no longer available in jOOQ 3.0. - *

- * See the jOOQ manual's section about migrating to jOOQ 3.0 - */ - @SuppressWarnings("unused") - private DSL(SQLDialect dialect, Settings settings) { - throw new UnsupportedOperationException(); - } }