File tree Expand file tree Collapse file tree 6 files changed +7
-5
lines changed
avro/src/main/java/com/fasterxml/jackson/dataformat/avro
cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 15
15
* Implementation class that exposes additional internal API
16
16
* to be used as callbacks by {@link AvroReadContext} implementations.
17
17
*/
18
- public final class ApacheAvroParserImpl extends AvroParserImpl
18
+ public class ApacheAvroParserImpl extends AvroParserImpl
19
19
{
20
20
/*
21
21
/**********************************************************
Original file line number Diff line number Diff line change 12
12
* Implementation class that exposes additional internal API
13
13
* to be used as callbacks by {@link AvroReadContext} implementations.
14
14
*/
15
- public final class JacksonAvroParserImpl extends AvroParserImpl
15
+ public class JacksonAvroParserImpl extends AvroParserImpl
16
16
{
17
17
/**
18
18
* Additionally we can combine UTF-8 decoding info into similar
Original file line number Diff line number Diff line change 8
8
* Context used at root level; basically just a container
9
9
* over actual {@link AvroStructureReader}.
10
10
*/
11
- public final class RootReader extends AvroReadContext
11
+ public class RootReader extends AvroReadContext
12
12
{
13
13
private final AvroParserImpl _parser ;
14
14
private final AvroStructureReader _valueReader ;
Original file line number Diff line number Diff line change 5
5
import com .fasterxml .jackson .databind .JsonMappingException ;
6
6
import com .fasterxml .jackson .dataformat .avro .AvroGenerator ;
7
7
8
- public final class ArrayWriteContext
8
+ public class ArrayWriteContext
9
9
extends AvroWriteContext
10
10
{
11
11
protected final GenericArray <Object > _array ;
Original file line number Diff line number Diff line change 17
17
18
18
import static com .fasterxml .jackson .dataformat .cbor .CBORConstants .*;
19
19
20
- public final class CBORParser extends ParserMinimalBase
20
+ public class CBORParser extends ParserMinimalBase
21
21
{
22
22
/**
23
23
* Enumeration that defines all togglable features for CBOR generators.
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ Modules:
13
13
14
14
#128 (protobuf) Fix skip unknown WireType.FIXED_64BIT value bug
15
15
(reported, contributed fix for by marsqing@github@github)
16
+ #129 (cbor) Remove "final" modifier from `CBORParser`
17
+ (suggested by jinzha@github)
16
18
17
19
2.9.4 (24-Jan-2018)
18
20
You can’t perform that action at this time.
0 commit comments