[jOOQ/jOOQ#12109] Remove pre 3.6 deprecated API

This commit is contained in:
Lukas Eder 2021-07-06 21:24:11 +02:00
parent bb248cf4e0
commit 8f6638b7e5
2 changed files with 1 additions and 3 deletions

View File

@ -116,8 +116,7 @@ public class Databases {
case POSTGRES: result = PostgresDatabase.class; break;
case SQLITE: result = SQLiteDatabase.class; break;
case DEFAULT:
case SQL99: result = JDBCDatabase.class; break;
case DEFAULT: result = JDBCDatabase.class; break;
}
return result;

View File

@ -946,7 +946,6 @@ public enum SQLDialect {
* <ul>
* <li>{@link #DEFAULT}: A hypothetical dialect used for
* {@link QueryPart#toString()} calls of unattached query parts.</li>
* <li>{@link #SQL99}: A legacy version of {@link #DEFAULT}.</li>
* <li>{@link #POSTGRESPLUS}: A not yet supported dialect.</li>
* </ul>
*/