Skip to content

Commit e121867

Browse files
committed
Change the version constant name
1 parent 94d58a6 commit e121867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/utplsql/api/DBHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
public final class DBHelper {
1414

15-
public static final String UTPLSQL_VERSION = "3.0.3";
15+
public static final String UTPLSQL_COMPATIBILITY_VERSION = "3.0.3";
1616

1717
private DBHelper() {}
1818

@@ -93,7 +93,7 @@ public static boolean versionCompatibilityCheck(Connection conn, String requeste
9393

9494
public static boolean versionCompatibilityCheck(Connection conn)
9595
throws SQLException {
96-
return versionCompatibilityCheck(conn, UTPLSQL_VERSION);
96+
return versionCompatibilityCheck(conn, UTPLSQL_COMPATIBILITY_VERSION);
9797
}
9898

9999
/**

0 commit comments

Comments
 (0)