2.50.0 does not accept this code.
import lombok.Getter;
@Getter
public class Reproducer {
/**
* See {@link String}
*/
private String str = "";
}
warning: [UnrecognisedJavadocTag] This Javadoc tag wasn't recognised by the parser. Is it malformed somehow, perhaps with mismatched braces?
private String str = "";
^
Issue goes away if I get rid of Lombok @Getter annotation or switch to markdown javadoc syntax
2.50.0 does not accept this code.
Issue goes away if I get rid of Lombok
@Getterannotation or switch to markdown javadoc syntax