Remove POSTGRES_9_4 reference also from Javadoc

This commit is contained in:
Lukas Eder 2022-09-07 15:38:43 +02:00
parent a00a9da77d
commit 0a0113b558

View File

@ -1240,11 +1240,11 @@ public enum SQLDialect {
* <pre>
* <code>
* // Do this block only if the chosen dialect was before PostgreSQL 9.3-
* if (dialect.precedesStrictly(POSTGRES_9_3)) {
* if (dialect.precedesStrictly(POSTGRES)) {
* }
*
* // Do this block only if the chosen dialect was before PostgreSQL 9.4-
* else if (dialect.precedesStrictly(POSTGRES_9_4)) {
* else if (dialect.precedesStrictly(POSTGRES)) {
* }
*
* // Fall back to post-PostgreSQL 9.4+ behaviour