Skip to content

Commit 5f67224

Browse files
committed
Misc. minor fixes
1 parent 268c858 commit 5f67224

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

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

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

3030
private static final int STATE_END_OF_BLOB = 2;
3131

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

3434
public V10InputBlob(FbWireDatabase database, FbWireTransaction transaction, BlobParameterBuffer blobParameterBuffer,
3535
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
@@ -80,6 +80,7 @@ public boolean hasException() {
8080

8181
/**
8282
* @return the root SQLException or empty if no SQLException was added to this SQLExceptionChainBuilder
83+
* @since 6
8384
*/
8485
public @NonNull Optional<SQLException> optException() {
8586
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
@@ -211,7 +211,7 @@ protected void assertBlobContent(byte[] blobContent, byte[] baseContent, int req
211211
*/
212212
@SuppressWarnings("SameParameterValue")
213213
protected void populateSegmentedBlob(int id, byte[] baseContent, int requiredSize) throws SQLException {
214-
populateBlob(id, baseContent, requiredSize, false);;
214+
populateBlob(id, baseContent, requiredSize, false);
215215
}
216216

217217
/**

0 commit comments

Comments
 (0)