Skip to content

Commit

Permalink
Fix #129
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 2, 2018
1 parent 0714415 commit a56c0c9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Implementation class that exposes additional internal API
* to be used as callbacks by {@link AvroReadContext} implementations.
*/
public final class ApacheAvroParserImpl extends AvroParserImpl
public class ApacheAvroParserImpl extends AvroParserImpl
{
/*
/**********************************************************
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Implementation class that exposes additional internal API
* to be used as callbacks by {@link AvroReadContext} implementations.
*/
public final class JacksonAvroParserImpl extends AvroParserImpl
public class JacksonAvroParserImpl extends AvroParserImpl
{
/**
* Additionally we can combine UTF-8 decoding info into similar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Context used at root level; basically just a container
* over actual {@link AvroStructureReader}.
*/
public final class RootReader extends AvroReadContext
public class RootReader extends AvroReadContext
{
private final AvroParserImpl _parser;
private final AvroStructureReader _valueReader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.dataformat.avro.AvroGenerator;

public final class ArrayWriteContext
public class ArrayWriteContext
extends AvroWriteContext
{
protected final GenericArray<Object> _array;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import static com.fasterxml.jackson.dataformat.cbor.CBORConstants.*;

public final class CBORParser extends ParserMinimalBase
public class CBORParser extends ParserMinimalBase
{
/**
* Enumeration that defines all togglable features for CBOR generators.
Expand Down
2 changes: 2 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Modules:

#128 (protobuf) Fix skip unknown WireType.FIXED_64BIT value bug
(reported, contributed fix for by marsqing@github@github)
#129 (cbor) Remove "final" modifier from `CBORParser`
(suggested by jinzha@github)

2.9.4 (24-Jan-2018)

Expand Down

0 comments on commit a56c0c9

Please sign in to comment.