diff --git a/processor/src/main/java/org/mapstruct/ap/model/source/selector/QualifierSelector.java b/processor/src/main/java/org/mapstruct/ap/model/source/selector/QualifierSelector.java index 712f9dd12..34a2515c2 100644 --- a/processor/src/main/java/org/mapstruct/ap/model/source/selector/QualifierSelector.java +++ b/processor/src/main/java/org/mapstruct/ap/model/source/selector/QualifierSelector.java @@ -35,20 +35,18 @@ import org.mapstruct.ap.prism.QualifierPrism; /** * This selector selects a best match based on qualifiers name. - * *

* A method is said to be marked with a qualifier annotation if the class in which it resides is annotated with a * qualifier annotation or if the method itself is annotated with a qualifier annotation or both. - *

- * *

* Rules: *

    - *
  1. 1. If a method is marked with a qualifier annotation, it does not contribute to a match otherwise and - * is hence removed from the list of potential mapping methods
  2. - *
  3. 2. If multiple qualifiers (qualifedBy) are specified, all should match to make a match.
  4. + *
  5. If a method is marked with a qualifier annotation, it does not contribute to a match otherwise and is hence + * removed from the list of potential mapping methods
  6. + *
  7. If multiple qualifiers (qualifedBy) are specified, all should match to make a match.
  8. *
*

+ * * @author Sjaak Derksen */ public class QualifierSelector implements MethodSelector {