Skip to content

Remove inaccessible Javadoc links from Clipper64#36

Merged
micycle1 merged 2 commits intomasterfrom
copilot/fix-javadoc-warnings
Mar 9, 2026
Merged

Remove inaccessible Javadoc links from Clipper64#36
micycle1 merged 2 commits intomasterfrom
copilot/fix-javadoc-warnings

Conversation

Copy link
Contributor

Copilot AI commented Mar 9, 2026

The reported Javadoc warnings came from Clipper64 linking to inherited methods declared on package-private ClipperBase. Javadoc treated those member references as inaccessible and emitted repeated warnings during doc generation.

  • Javadoc cleanup

    • Replaced {@link ...} references to inherited path-loading methods in Clipper64 with inline code references.
    • Preserved the API guidance while avoiding links that traverse a non-public superclass.
  • Scope

    • Limited to the Clipper64 class-level execution documentation.
    • No behavioral or API changes.
// before
{@link #addSubject(Paths64) addSubject()},
{@link #addOpenSubject(Paths64) addOpenSubject()}
and {@link #addClip(Paths64) addClip()}

// after
<code>addSubject()</code>, <code>addOpenSubject()</code>
and <code>addClip()</code>

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: micycle1 <9304234+micycle1@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix Javadoc warnings in Clipper64.java Remove inaccessible Javadoc links from Clipper64 Mar 9, 2026
@micycle1 micycle1 marked this pull request as ready for review March 9, 2026 13:39
@micycle1 micycle1 merged commit ca021db into master Mar 9, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants