File tree 3 files changed +30
-2
lines changed
src/main/java/com/fasterxml/jackson/core/util
3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -372,3 +372,8 @@ Dai Mikurube (dmikurube@github)
372
372
* Contributed #1111 : Call the right `filterFinishArray()`/`filterFinishObject()`
373
373
from `FilteringParserDelegate `
374
374
(2.15 .3 )
375
+
376
+ Simon Baslé (simonbasle @github )
377
+ * Reported #1146 : `JsonParserDelegate` missing overrides for `canParseAsync()`,
378
+ `getNonBlockingInputFeeder ()`
379
+ (2.15 .4 )
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ a pure JSON library.
14
14
= == Releases == =
15
15
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
16
16
17
+ 2.15 .4 (not yet released )
18
+
19
+ #1146 : `JsonParserDelegate ` missing overrides for `canParseAsync ()`,
20
+ `getNonBlockingInputFeeder ()`
21
+ (reported by Simon B )
22
+
17
23
2.15 .3 (12 - Oct - 2023 )
18
24
19
25
#1111 : Call the right `filterFinishArray()`/`filterFinishObject()`
Original file line number Diff line number Diff line change 7
7
import java .math .BigInteger ;
8
8
9
9
import com .fasterxml .jackson .core .*;
10
+ import com .fasterxml .jackson .core .async .NonBlockingInputFeeder ;
10
11
11
12
/**
12
13
* Helper class that implements
@@ -92,9 +93,25 @@ public StreamReadConstraints streamReadConstraints() {
92
93
/**********************************************************************
93
94
*/
94
95
95
- @ Override public boolean requiresCustomCodec () { return delegate .requiresCustomCodec (); }
96
+ @ Override
97
+ public boolean canParseAsync () {
98
+ return delegate .canParseAsync ();
99
+ }
100
+
101
+ @ Override
102
+ public NonBlockingInputFeeder getNonBlockingInputFeeder () {
103
+ return delegate .getNonBlockingInputFeeder ();
104
+ }
96
105
97
- @ Override public JacksonFeatureSet <StreamReadCapability > getReadCapabilities () { return delegate .getReadCapabilities (); }
106
+ @ Override
107
+ public JacksonFeatureSet <StreamReadCapability > getReadCapabilities () {
108
+ return delegate .getReadCapabilities ();
109
+ }
110
+
111
+ @ Override
112
+ public boolean requiresCustomCodec () {
113
+ return delegate .requiresCustomCodec ();
114
+ }
98
115
99
116
/*
100
117
/**********************************************************************
You can’t perform that action at this time.
0 commit comments