The idiomatic
/**
* ...
* <pre>
* {@code
* ...
* }
* </pre>
*/
which is used in code examples in Javadoc, gets messed up by Spotless (or something else?). It replaces all occurences of @ by @. Which, in general, is good, for example for @Override and other annotations that are actually part of the code.
But since @code is a Javadoc-meta-annotation, it should not be converted.
Otherwise it messes up the rendering, as seen here:


The idiomatic
which is used in code examples in Javadoc, gets messed up by Spotless (or something else?). It replaces all occurences of
@by@. Which, in general, is good, for example for@Overrideand other annotations that are actually part of the code.But since
@codeis a Javadoc-meta-annotation, it should not be converted.Otherwise it messes up the rendering, as seen here:

