Non final JsonReadContext #272
isalvadori
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
I don't remember strict reason for it having to be |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
we are trying out jackson 3 rc2.
I just would like to know why is the
JsonReadContext
final? Its counter part,JsonWriteContext
is not.We are working on a unified framework to read/write EMF object from/into other formats and we would like to be able to extend the contexts, in such a way to also store additional, EMF-related information. While we are able to do it during writing, the fact that the
JsonReadContext
isfinal
makes it harder to write something which just treats the json case like all the others.Is there any particular reason why that class is marked as
final
or can you make non final?Beta Was this translation helpful? Give feedback.
All reactions