Oliver Erhart
Oliver Erhart
Fixes #3678
Although this is not planned for 1.7.0 I had a look at it. Some notes about the PR: Using a `List` directly as parameter is not possible. It shows: `"Can't...
With MapStruct 1.7.0 it is possible to provide ignored arguments with the new annotation `@Ignored`: * https://github.com/mapstruct/mapstruct/issues/1958 The `UnmappedTargetPropertiesInspection` needs to consider them, else we would get false warnings. This...
Referencing a target that does not exist results in a compilation error. Therefore we should support the check of target properties (`MapstructTargetReference`) for that annotation. ```java interface FooMapper { @Ignored(targets...