This is an automated email from the ASF dual-hosted git repository.
jlmonteiro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/johnzon.git
from 01ac65b5 fix: move tck under a specific profile while we are still
working on it, so we can merge the PR and keep working
new 1595f51e Implement JsonParser#currentEvent()
new 6d09e7e9 Implement JsonProvider#createValue(Number)
new 9c1b209e Implement JsonConfig.KEY_STRATEGY config property
new 9a4e77b7 Don't close underlying stream in JsonGenerator#close(), fixes
jsonGeneratorStreamNotClosedTest
new 911ea549 Clear attributes in JsonObjectBuilder#build(), fixes
jsonObjectBuilderBuildTest
new 128fecbd Revert renaming RejectDuplicateKeysMode and it's values
new 116c7141 RejectDuplicateKeysMode: actually use default as default
new f7c83d5a Merge pull request #110 from jungm/jsonp-2.1
The 1010 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/johnzon/core/JsonArrayBuilderImpl.java | 3 +-
.../org/apache/johnzon/core/JsonGeneratorImpl.java | 2 +-
.../apache/johnzon/core/JsonInMemoryParser.java | 5 ++
.../apache/johnzon/core/JsonObjectBuilderImpl.java | 4 +-
.../org/apache/johnzon/core/JsonProviderImpl.java | 7 ++-
.../apache/johnzon/core/JsonStreamParserImpl.java | 12 +++--
.../johnzon/core/RejectDuplicateKeysMode.java | 10 +++-
.../johnzon/core/JsonInMemoryParserTest.java | 57 ++++++++++++++++++++++
.../johnzon/core/JsonObjectBuilderImplTest.java | 31 ++++++++++++
.../org/apache/johnzon/core/JsonProviderTest.java | 10 ++++
.../apache/johnzon/core/JsonReaderImplTest.java | 30 ++++++++++++
.../johnzon/core/JsonStreamParserImplTest.java | 31 ++++++++++++
12 files changed, 193 insertions(+), 9 deletions(-)
create mode 100644
johnzon-core/src/test/java/org/apache/johnzon/core/JsonInMemoryParserTest.java