Hi, Julia
On 9/20/19 3:22 AM, Julia Boes wrote:
Hi,
Thanks for noticing the glitch in the sdiffs, Naoto and Brent. I see
that there is indeed an issue with the webrev script and I'm looking
into a workaround.
The following classes are affected:
src/java.base/share/classes/java/lang/SecurityManager.java
src/java.base/share/classes/java/util/Calendar.java
The Udiffs for these look fine.
src/java.base/share/classes/java/util/ResourceBundle.java
I believe the <code> tag spanning L2801-2 can be changed:
2801 * <li>Special cases for Norwegian. Both
<code>Locale("no", "NO",
2802 * "NY")</code> and {@code Locale("nn", "NO")} represent
Norwegian
Same at L2818-9:
2818 * Bokmål "nb". Except for the single case <code>Locale("no",
2819 * "NO", "NY")</code> (handled above), when an input {@code
Locale}
src/java.base/share/classes/java/util/regex/Matcher.java
All I see in this file is the final closing brace being replaced with a
closing brace :D
in PipedInputStream.java:
195 * @exception IOException If the pipe is <a href="#BROKEN">
{@code broken}</a>,
Here we have a link written out in HTML, with {@code} used within the
displayed text of the link. This would typically be done instead by
using a @link tag, as on the next line:
196 * {@link #connect(java.io.PipedOutputStream)
unconnected},
>
Brent, I can make this change but can the @link tag link to a HTML
id? It's not mentioned in the documentation
https://docs.oracle.com/javase/7/docs/technotes/tools/windows/javadoc.html#link.
Oh, I see now - #BROKEN is a hand-coded HTML anchor, not a field name.
Hmm...
I recall thinking that many of the <code> should actually be changed
to @link since use of <code> suggested ancient times before @link became
available.
But "Perfect is the enemy of good".
Indeed.
I agree, if that's ok I would leave that as future work ;)
Definitely OK. Those may even already be "correct", and not suitable
uses of @link at all.
Thanks,
-Brent