We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why reviewing PR #179 @hduelme pointed out that the Wrong usage of mappers factory does not work (i.e. it does not remove it) with the following code:
@Mapper(componentModel = "spring") abstract class WrongComponentModelMapper { static { Mappers.getMapper(WrongComponentModelMapper.class); } Target map(Target source); }
or
@Mapper(config = MyConfig.class, componentModel = "spring") interface WrongComponentModelMapper { WrongComponentModelMapper INSTANCE = () -> { return Mappers.getMapper(WrongComponentModelMapper.class); }; Target map(Target source); }
We need to see if we can support this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why reviewing PR #179 @hduelme pointed out that the Wrong usage of mappers factory does not work (i.e. it does not remove it) with the following code:
or
We need to see if we can support this.
The text was updated successfully, but these errors were encountered: