Bug: Delegate does not carry over annotations
For example:
when delegating to properties()
method void add(@NotNull PropertyDefinition propertyDefinition, @NotNull
String value);
it ends up
public void add(PropertyDefinition propertyDefinition, String value) {
properties().add(propertyDefinition, value);
}
请先登录再写评论。