Skip to content

Commit

Permalink
Backport #280 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 6, 2016
1 parent 38b3f0b commit 00a29c8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions release-notes/CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,8 @@ Lokesh Kumar N (LokeshN@github)
* Contributed #209: Make use of `_allowMultipleMatches` in `FilteringParserDelegate`
(2.7.4)


Tanguy Leroux (tlrx@github)
* Reported, contributed fix for #280: FilteringGeneratorDelegate.writeUTF8String()
should delegate to writeUTF8String()
(2.7.5)
5 changes: 5 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ JSON library.
=== Releases ===
------------------------------------------------------------------------

2.7.5 (not yet released)

#280: FilteringGeneratorDelegate.writeUTF8String() should delegate to writeUTF8String()
(reported by Tanguy L)

2.7.4 (29-Apr-2016)

#209: Make use of `_allowMultipleMatches` in `FilteringParserDelegate`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public void writeUTF8String(byte[] text, int offset, int length) throws IOExcept
{
// not exact match, but best we can do
if (_checkRawValueWrite()) {
delegate.writeRawUTF8String(text, offset, length);
delegate.writeUTF8String(text, offset, length);
}
}

Expand Down

0 comments on commit 00a29c8

Please sign in to comment.