Skip to content

Commit 5b44924

Browse files
committed
Misc. minor changes
1 parent 86388fd commit 5b44924

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/org/firebirdsql/gds/ng/wire/version10/V10InputBlob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class V10InputBlob extends AbstractFbWireInputBlob implements FbWireBlob,
4545

4646
private static final int STATE_END_OF_BLOB = 2;
4747

48-
// TODO V10OutputBlob and V10InputBlob share some common behavior and information (eg in open() and getMaximumSegmentSize()), find a way to unify this
48+
// TODO V10OutputBlob and V10InputBlob share some common behavior and information (eg in open()), find a way to unify this
4949

5050
public V10InputBlob(FbWireDatabase database, FbWireTransaction transaction, BlobParameterBuffer blobParameterBuffer,
5151
long blobId) throws SQLException {

src/main/org/firebirdsql/jaybird/util/SQLExceptionChainBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ public boolean hasException() {
9696

9797
/**
9898
* @return the root SQLException or empty if no SQLException was added to this SQLExceptionChainBuilder
99+
* @since 6
99100
*/
100101
public @NonNull Optional<SQLException> optException() {
101102
return Optional.ofNullable(root);

src/test/org/firebirdsql/gds/ng/BaseTestBlob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ protected void assertBlobContent(byte[] blobContent, byte[] baseContent, int req
227227
*/
228228
@SuppressWarnings("SameParameterValue")
229229
protected void populateSegmentedBlob(int id, byte[] baseContent, int requiredSize) throws SQLException {
230-
populateBlob(id, baseContent, requiredSize, false);;
230+
populateBlob(id, baseContent, requiredSize, false);
231231
}
232232

233233
/**

0 commit comments

Comments
 (0)