-
-
Notifications
You must be signed in to change notification settings - Fork 142
Module builder #526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module builder #526
Conversation
src/main/scala/com/fasterxml/jackson/module/scala/deser/TupleDeserializerModule.scala
Show resolved
Hide resolved
|
Nothing much to comment since I am not familiar enough to offer much useful feedback. |
|
@cowtowncoder this 'Builder' class follows the Builder pattern and is used to build a ScalaModule (which extends the JacksonModule/Module) |
|
@pjfanning Ok then I am confused. From changes it seemed odd that it would be passed to (de)serializers and value instantiators and so on. I'll see if I can grok the flow with more context. |
|
I can rename the ReadOnlyBuilder trait as Config - would make that part of the code more readable |
|
@pjfanning on builder arg passed, yes, I can see now how it adds things to be added via SetupContext. |
|
@pjfanning Ah. On |
#525