Skip to content

Commit

Permalink
Reduce visibility of AbstractFbAttachment.getServerVersionInformation…
Browse files Browse the repository at this point in the history
… to match returned type
  • Loading branch information
mrotteveel committed Jul 8, 2023
1 parent c934e0a commit 1b49ac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/docs/asciidoc/release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,9 @@ This means there may be undocumented changes to internal API.
If you are confronted with such a change, let us know on https://groups.google.com/g/firebird-java[firebird-java], so we can take this into account when documenting future changes.
====

* `AbstractFbAttachment`
** `getServerVersionInformation()` was changed from `protected` to package-private.
Given the returned type was already package-private, it wasn't really useful for subclasses outside the package anyway.
* `FbWireDatabase`
** `enqueueDeferredAction(DeferredAction)` now throws `SQLException` to be able to handle exceptions for sync actions if there are a lot of deferred packets
* `FbWireOperations`
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/firebirdsql/gds/ng/AbstractFbAttachment.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected final void setServerVersion(String... versionStrings) {
}


protected ServerVersionInformation getServerVersionInformation() {
final ServerVersionInformation getServerVersionInformation() {
return serverVersionInformation;
}

Expand Down

0 comments on commit 1b49ac3

Please sign in to comment.