mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Add missing generic diamond operator to MappingOptions (#3498)
This commit is contained in:
parent
60f162ca88
commit
6322138028
@ -121,7 +121,7 @@ public class MappingOptions extends DelegatingOptions {
|
|||||||
String defaultValue = mapping.defaultValue().getValue();
|
String defaultValue = mapping.defaultValue().getValue();
|
||||||
|
|
||||||
Set<String> dependsOn = mapping.dependsOn().hasValue() ?
|
Set<String> dependsOn = mapping.dependsOn().hasValue() ?
|
||||||
new LinkedHashSet( mapping.dependsOn().getValue() ) :
|
new LinkedHashSet<>( mapping.dependsOn().getValue() ) :
|
||||||
Collections.emptySet();
|
Collections.emptySet();
|
||||||
|
|
||||||
FormattingParameters formattingParam = new FormattingParameters(
|
FormattingParameters formattingParam = new FormattingParameters(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user