-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
I have classes with imports of nested class. UtilClass.FactoryClass in example below.
This worked in 1.4.2.. After upgrade to 1,5 generated code lacks import declared in annotation property
@Mapper(imports = UtilClass.FactoryClass.class)
public interface ExampleMapper {
@Mapping(target = "firstName", expression = "java(FactoryClass.doSomething( source ))")
Person map(Source source);
}