Skip to content
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

8293333: Broken links in JDI specification #10191

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -93,7 +93,7 @@ public interface ClassLoaderReference extends ObjectReference {
* classes which this class loader can find by name. The list
* has length 0 if no classes are visible to this classloader.
*
* @see <a href="{@docRoot}/../specs/jvmti/jvmti.html#GetClassLoaderClasses">
* @see <a href="{@docRoot}/../specs/jvmti.html#GetClassLoaderClasses">
* JVM TI GetClassLoaderClasses</a>
*/
List<ReferenceType> visibleClasses();
Expand Down
2 changes: 1 addition & 1 deletion src/jdk.jdi/share/classes/com/sun/jdi/VirtualMachine.java
Expand Up @@ -144,7 +144,7 @@ default List<ModuleReference> allModules() {
*
* @return a list of {@link ReferenceType} objects, each mirroring
* a loaded type in the target VM.
* @see <a href="{@docRoot}/../specs/jvmti/jvmti.html#GetLoadedClasses">
* @see <a href="{@docRoot}/../specs/jvmti.html#GetLoadedClasses">
* JVM TI GetLoadedClasses</a> regarding how class and interface creation can be triggered
*/
List<ReferenceType> allClasses();
Expand Down