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);
}
Please sign in to leave a comment.