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

Fix Javadoc links #1040

Merged
merged 8 commits into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public FlowRule getFlowRule() {
* Produce a string representation.
*
* @return a string representation
* @see org.checkerframework.dataflow.cfg.builder.CFGBuilder.PhaseOneResult#nodeToString
* @see org.checkerframework.dataflow.cfg.builder.PhaseOneResult#nodeToString
*/
@Override
public String toString() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,8 @@ private AnnotatedExecutableType(ExecutableType type, AnnotatedTypeFactory factor
* The varargs type is the last element of {@link paramTypes} if the method or constructor
* accepts a variable number of arguments and the {@link paramTypes} has not been expanded
* yet. This type needs to be stored in the field to avoid being affected by calling {@link
* AnnotatedTypes#adaptParameters(AnnotatedTypeFactory, AnnotatedExecutableType, List)}.
* AnnotatedTypes#adaptParameters(AnnotatedTypeFactory, AnnotatedExecutableType, List,
* com.sun.source.tree.NewClassTree)}.
Ao-senXiong marked this conversation as resolved.
Show resolved Hide resolved
*/
private @MonotonicNonNull AnnotatedArrayType varargType = null;

Expand Down
Loading