Noting that <tt> is not valid in html5 and the suggestion is to change it to <code>
That is, when generating the javadoc for this project with JDK 11 javadoc we get the error - tag not supported in the generated HTML version: tt. Changing the <tt> tag to <code> is the suggested fix.
Noting that
<tt>
is not valid in html5 and the suggestion is to change it to<code>
That is, when generating the javadoc for this project with JDK 11 javadoc we get the error -
tag not supported in the generated HTML version: tt
. Changing the<tt>
tag to<code>
is the suggested fix.