File tree Expand file tree Collapse file tree
src/main/org/firebirdsql/gds Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public interface JaybirdErrorCodes {
4848 /**
4949 * @deprecated Jaybird no longer uses this error code
5050 */
51- @ Deprecated ( since = "5.0.7" )
51+ @ Deprecated
5252 int jb_blobPutSegmentTooLong = 337248259 ;
5353 int jb_blobIdAlreadySet = 337248260 ;
5454 int jb_invalidClumpletStructure = 337248261 ;
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ protected void checkBlobOpen() throws SQLException {
8787
8888 private void deferredOpen () throws SQLException {
8989 sendOpen (BlobOpenOperation .INPUT_BLOB , false );
90- getDatabase ().enqueueDeferredAction (wrapDeferredResponse (new DeferredResponse <>() {
90+ getDatabase ().enqueueDeferredAction (wrapDeferredResponse (new DeferredResponse <Response >() {
9191 @ Override
9292 public void onResponse (Response response ) {
9393 if (response instanceof GenericResponse ) {
@@ -123,7 +123,7 @@ private void getBlobInfoOnDeferredOpen() throws SQLException {
123123 } catch (IOException e ) {
124124 throw new FbExceptionBuilder ().exception (ISCConstants .isc_net_write_err ).cause (e ).toSQLException ();
125125 }
126- getDatabase ().enqueueDeferredAction (wrapDeferredResponse (new DeferredResponse <>() {
126+ getDatabase ().enqueueDeferredAction (wrapDeferredResponse (new DeferredResponse <Response >() {
127127 @ Override
128128 public void onResponse (Response response ) {
129129 if (response instanceof GenericResponse ) {
You can’t perform that action at this time.
0 commit comments