Fix #894 - derived TypeFactory: fix TypeParser problem #895
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Derived TypeFactory (instantiated using with... method) should have a new TypeParser which points to itself.
I've created the issue #894 to explain the situation.
Since it's a catch-22 situation because a new TypeFactory has a TypeParser which has to point to itself, I had to change TypeParser variable _parser on TypeFactory not to be final and create a (private method) setter to set the new TypeParser. I hope it's ok with you this way.
The new TypeParser works correctly only if using the newly created TypeFactory (when it's a ClassLoader issue) because the original TypeFactory doesn't have it.
I'd love to see this included in the next release because we're using 2.6.1 in production now and this problem forces us to continue with the Thread switch hack to allow finding the class.