-
Notifications
You must be signed in to change notification settings - Fork 93
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
Dependency on yasson #2094
Comments
Sorry, I meant If this is about performance, has anybody measured that? I think the JDK might very well be able to inline this. |
We bring in Yasson anyway so I guess using its classes wasn't considered a problem, but if we can remove that, then why not. |
It's also a dependency in the
That catches the |
I just found the following code in
RequestImpl
that necessitates the dependency on yasson, which we should get rid of.Why is this not simply
varBuilder.add(k, jsonb.toJson(v));
and why is the exception ignored?If there is a valid reason, this deserves a comment. Anyone any idea? @hogmuzzle maybe?
The text was updated successfully, but these errors were encountered: