From eca743310365b24ddc79085c35e1c0901f58361c Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Sun, 10 Feb 2019 09:09:17 +0100 Subject: [PATCH] #1694 Avoid circular dependency between model and conversion packages Remove import of SimpleConversion used in the javadoc of the BuiltIntMethod Fixes #1694 --- .../ap/internal/model/source/builtin/BuiltInMethod.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/processor/src/main/java/org/mapstruct/ap/internal/model/source/builtin/BuiltInMethod.java b/processor/src/main/java/org/mapstruct/ap/internal/model/source/builtin/BuiltInMethod.java index 024f63229..783ea43a5 100644 --- a/processor/src/main/java/org/mapstruct/ap/internal/model/source/builtin/BuiltInMethod.java +++ b/processor/src/main/java/org/mapstruct/ap/internal/model/source/builtin/BuiltInMethod.java @@ -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