-
Notifications
You must be signed in to change notification settings - Fork 82
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
POJO encoder doesn't handle final fields #77
Comments
can be connected with: #95 |
You can use them, but you cant use |
This has broader consequences: not only final fields are silently ignored, but also it requires all form params to be actual fields. I can imagine a scenario where form param is calculated on the fly and is not backed by any field (e.g. Any reason why param extraction is done this way instead of using standard |
Final fields are ignored in PojoUtils.toMap:
This means we can't use data classes in Kotlin. Is there a compelling reason why final fields are being ignored?
The text was updated successfully, but these errors were encountered: