I have method with javadoc:
/**
* Supplier interface mixed with {@link ServiceCast}.
* @param <R> is <TYPE> of supplier.
*/
public interface ServiceCastSupplier<R> extends ServiceCast, Supplier<R> {
}
in pipeline I'm getting error:
error: unknown tag: TYPE
[ERROR] * @param <R> is <TYPE> of supplier
r.
why it doesn't like <R>, what's wrong with it?