#109 Removing package cycle between "model.source" and "util"

This commit is contained in:
Gunnar Morling 2014-01-25 15:22:29 +01:00
parent e072826c9d
commit cbccdd847c
2 changed files with 3 additions and 3 deletions

View File

@ -16,11 +16,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mapstruct.ap.util;
package org.mapstruct.ap.model.source;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.lang.model.element.TypeElement;
import javax.lang.model.element.TypeParameterElement;
import javax.lang.model.element.VariableElement;
@ -35,7 +36,6 @@ import javax.lang.model.util.SimpleTypeVisitor6;
import javax.lang.model.util.Types;
import org.mapstruct.ap.model.Type;
import org.mapstruct.ap.model.source.Method;
/**
* MethodMatcher $8.4 of the JavaLanguage specification describes a method body as such:

View File

@ -58,11 +58,11 @@ import org.mapstruct.ap.model.Type;
import org.mapstruct.ap.model.TypeConversion;
import org.mapstruct.ap.model.source.Mapping;
import org.mapstruct.ap.model.source.Method;
import org.mapstruct.ap.model.source.MethodMatcher;
import org.mapstruct.ap.option.Options;
import org.mapstruct.ap.option.ReportingPolicy;
import org.mapstruct.ap.util.Executables;
import org.mapstruct.ap.util.Filters;
import org.mapstruct.ap.util.MethodMatcher;
import org.mapstruct.ap.util.Strings;
import org.mapstruct.ap.util.TypeFactory;