Skip to content

Commit

Permalink
Removed deprecated for removal constants from JaybirdErrorCodes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Dec 27, 2024
1 parent c3bc79d commit 7045381
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/docs/asciidoc/release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,9 @@ The following constants have been removed in Jaybird 7:
use `isc_sql_dialect_conflict_num`
** `isc_err_max`;
there is no replacement
* `JaybirdErrorCodes`
** `jb_stmtInErrorRequireCLose`;
use `jb_stmtInErrorRequireClose`
* `QuoteStrategy`
** `NO_QUOTES`;
use `DIALECT_1`
Expand Down
6 changes: 0 additions & 6 deletions src/main/org/firebirdsql/gds/JaybirdErrorCodes.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,6 @@ public interface JaybirdErrorCodes {
int jb_stmtNotAllocated = 337248302;
int jb_stmtClosed = 337248303;
int jb_stmtInErrorRequireClose = 337248304;
/**
* @deprecated use {@link #jb_stmtInErrorRequireClose}
*/
@SuppressWarnings("java:S1845")
@Deprecated(forRemoval = true, since = "6")
int jb_stmtInErrorRequireCLose = jb_stmtInErrorRequireClose;
int jb_invalidTransactionStateTransition = 337248305;
int jb_unexpectedInfoResponse = 337248306;
int jb_infoResponseEmpty = 337248307;
Expand Down

0 comments on commit 7045381

Please sign in to comment.