Skip to content

Commit

Permalink
Fix #24
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 27, 2016
1 parent 08854c6 commit f353219
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ protected String _numberToName(int ch, boolean neg) throws IOException
if (neg) {
i = -i - 1;
}
return String.valueOf(1);
return String.valueOf(i);
}

protected JsonToken _handleTaggedBinary(int tag) throws IOException
Expand Down
9 changes: 9 additions & 0 deletions release-notes/CREDITS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Here are people who have contributed to the development of Jackson JSON processor
binary data formats module
(version numbers in brackets indicate release in which the problem was fixed)

Tatu Saloranta ([email protected]): author

--------------------------------------------------------------------------------
Credits for individual projects, since 2.8.0
--------------------------------------------------------------------------------
16 changes: 16 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Project: jackson-datatypes-binary
Modules:
jackson-dataformat-avro
jackson-dataformat-cbor
jackson-dataformat-protobuf
jackson-dataformat-smile

------------------------------------------------------------------------
=== Releases ===
------------------------------------------------------------------------

2.8.0 (not yet released)

#24: (cbor) Incorrect coercion for int-valued Map keys to String


0 comments on commit f353219

Please sign in to comment.