PR broke the working behaviour #2424
We have this annotation in Java:
...
public @interface EachProperty {
@AliasFor(annotation = ConfigurationReader.class, member = ConfigurationReader.PREFIX)
String value();
We have classes annotated with it, we are reading it's values and annotations on the values.
After the changes merged in the referenced PR, member argument is marked as default, which makes our code to ignore the value provided.
You can see that the argument is marked as default because of it's synthetic origin.
PR broke the working behaviour #2424
We have this annotation in Java:
We have classes annotated with it, we are reading it's values and annotations on the values.
After the changes merged in the referenced PR,
memberargument is marked as default, which makes our code to ignore the value provided.You can see that the argument is marked as default because of it's synthetic origin.