Skip to content

Commit 015ef2b

Browse files
committed
#392 Rename BlobListenableField to BlobField
Preparation for expanding responsibilities of BlobField (and preserving file history)
1 parent 8bd100c commit 015ef2b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/org/firebirdsql/jdbc/field/BlobListenableField.java renamed to src/main/org/firebirdsql/jdbc/field/BlobField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
@InternalApi
1616
@NullMarked
17-
public interface BlobListenableField {
17+
public interface BlobField {
1818

1919
/**
2020
* Sets the blob listener of the field.

src/main/org/firebirdsql/jdbc/field/FBBlobField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* @author Roman Rokytskyy
3838
* @author Mark Rotteveel
3939
*/
40-
class FBBlobField extends FBField implements FBCloseableField, FBFlushableField, BlobListenableField {
40+
class FBBlobField extends FBField implements FBCloseableField, FBFlushableField, BlobField {
4141

4242
FirebirdBlob blob;
4343
private boolean blobExplicitNull;

src/main/org/firebirdsql/jdbc/field/FBLongVarCharField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @author Roman Rokytskyy
3737
* @author Mark Rotteveel
3838
*/
39-
public class FBLongVarCharField extends FBStringField implements FBCloseableField, FBFlushableField, BlobListenableField {
39+
public class FBLongVarCharField extends FBStringField implements FBCloseableField, FBFlushableField, BlobField {
4040

4141
// TODO Reduce duplication with FBBlobField, maybe make it wrap an FBBlobField?
4242

0 commit comments

Comments
 (0)