-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
Support for Mapstruct explicit Builder disable #67
Comments
Seems like this is an issue for the IntelliJ plugin. Can you please provide a code with which we can reproduce the issue? |
Here an example. There's a warning saying unmapped property example (examples is correctly mapped, but there's another property example in the builder because of the @Singular) (Note: I did everything in an inner class for ease of testing, but it does the same thing without the inner class.
The generated mapper seem to be ok, it uses the setters ans there's no property example, so it must be related to the plugin:
|
@miclefebvre I've changed the title of this issue since the plugin does not support the MapStruct |
Using lombok @builder with some @Singular properties shows warning of unmapped properties in the Intellij plugin.
Ex: If I have a property named baskets and singular, a new property basket is available in the builder and the plugin is saying it needs to be mapped.
Even, disabling the builder, the plugin continue to show warning :builder = @org.mapstruct.Builder(disableBuilder = true)
The text was updated successfully, but these errors were encountered: