Oliver Erhart
Oliver Erhart
It is possible, take a look at [this official sample code](https://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/quick_fix.html).
I'm sorry about my overhasty post about the sample code. That's just a sample to implement a quick-fix. After checking out the source I recognized that quick-fixes are already implemented,...
Yesterday I took some time to figure out how to get to the messages the annotation provider delivers. In previous versions it [had been able](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206800625-Implementing-a-ClassInstrumentingCompiler-how-to-get-the-generated-class-files?page=1#community_comment_206231395) to use a `ClassPostProcessingCompiler` but...
Here is a small reproducal for this exception (stripped the relevant parts from #3437). Unsure if this hase the same cause as the original post: ```java import org.mapstruct.Mapper; import org.mapstruct.Mapping;...
So, I played with this issue a bit. Currently with mapstruct `1.5.5.Final` the `CycleAvoidingMappingContext` from the original post ... ```java public class CycleAvoidingMappingContext { private final Map knownInstances = new...
@filiphr I would like to implement this feature. As far as I've seen, the following [part of the documentation](https://mapstruct.org/documentation/stable/reference/html/#mapping-configuration-inheritance) covers all possibilities of the requirement: > One method A can...
@linzch3 It seems to me that this problem is now solved (maybe since IntelliJ integrated the lombok plugin into the IDE itself?) Would you mind testing it again? It worked...
We are using `@SuperBuilder` for over a year now in different projects and never had any issues like that. Seems that something between the plugin version 1.2.0 and 1.4.0 fixed...
This might be solved with #2941 when nested target properties are handled differently.
@Jamel-jun In my experience `@Builder` or `@SuperBuilder` problems in combination with MapStruct is due to the missing of the additional needed annotation processor `lombok-mapstruct-binding`, see here: https://mapstruct.org/documentation/stable/reference/html/#_set_up Can you try...