-
Notifications
You must be signed in to change notification settings - Fork 408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Borked javadoc for JDK 9/10 packages #612
Comments
For mine the results are fine. I don't know why theres a difference. I get
|
Seems caused by using Java 9. With Java 8, I get better results: Although 3 links out of 4 are missing O_o Looking at the jdk8 sources, the javadoc is provided by a package.html page: http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/f940e7a48b72/src/share/classes/java/util/package.html Given those 3 missing links are relative URLs, they're not rendered: <h2>Package Specification</h2>
<ul>
<li><a href="../../../technotes/guides/collections/overview.html"><b>Collections Framework Overview</b></a>
<li><a href="../../../technotes/guides/collections/reference.html"><b>
Collections Framework Annotated Outline</b></a>
</ul>
<h2>Related Documentation</h2>
For overviews, tutorials, examples, guides, and tool documentation, please see:
<ul>
<li><a href="http://www.java.sun.com/docs/books/tutorial/collections/">
<b>Collections Framework Tutorial</b></a>
<li><a
href="../../../technotes/guides/collections/designfaq.html"><b>Collections
Framework Design FAQ</b></a>
</ul> |
I believe this is actually an issue with the remark library. Using Java 9 and hovering over util yields the same thing in current vscode-java. I've tested all of the table settings for Remark and none of them seem to provide a sensible output. |
So there are probably 2 issues:
|
…lipse-jdtls#612 Signed-off-by: Fred Bricon <[email protected]>
…lipse-jdtls#612 Signed-off-by: Fred Bricon <[email protected]>
…lipse-jdtls#612 Signed-off-by: Fred Bricon <[email protected]>
Following #582, hovering over the
util
bit inimport java.util.HashMap
returns incorrect/wrongly formed javadoc:See output:
cc @JPinkney
The text was updated successfully, but these errors were encountered: