#1694 Avoid circular dependency between model and conversion packages

Remove import of SimpleConversion used in the javadoc of the BuiltIntMethod

Fixes #1694
This commit is contained in:
Filip Hrisafov 2019-02-10 09:09:17 +01:00
parent 2ea5dcf400
commit eca7433103

View File

@ -12,7 +12,6 @@ import java.util.List;
import java.util.Set;
import javax.lang.model.element.ExecutableElement;
import org.mapstruct.ap.internal.conversion.SimpleConversion;
import org.mapstruct.ap.internal.model.common.Accessibility;
import org.mapstruct.ap.internal.model.common.ConversionContext;
import org.mapstruct.ap.internal.model.common.Parameter;
@ -27,7 +26,7 @@ import static org.mapstruct.ap.internal.util.Collections.first;
/**
* Represents a "built-in" mapping method which will be added as private method to the generated mapper. Built-in
* methods are used in cases where a {@link SimpleConversion} doesn't suffice, e.g. as several lines of source code or a
* methods are used in cases where a simple conversation doesn't suffice, e.g. as several lines of source code or a
* try/catch block are required.
*
* @author Sjaak Derksen