8276674: Malformed Javadoc inline tags in JDK source

Reviewed-by: jjg, rriggs, prappo, bchristi
This commit is contained in:
Tim Prinzing 2021-12-02 20:47:29 +00:00 committed by Brent Christian
parent e0f1fc783c
commit 652b5f8546
8 changed files with 13 additions and 13 deletions

View file

@ -180,7 +180,7 @@ abstract class AbstractTask<P_IN, P_OUT, R,
/** /**
* Computes the result associated with a leaf node. Will be called by * Computes the result associated with a leaf node. Will be called by
* {@code compute()} and the result passed to @{code setLocalResult()} * {@code compute()} and the result passed to {@code setLocalResult()}
* *
* @return the computed result of a leaf node * @return the computed result of a leaf node
*/ */

View file

@ -162,7 +162,7 @@ final class FindOps {
} }
/** /**
* Implementation of @{code TerminalSink} that implements the find * Implementation of {@code TerminalSink} that implements the find
* functionality, requesting cancellation when something has been found * functionality, requesting cancellation when something has been found
* *
* @param <T> The type of input element * @param <T> The type of input element

View file

@ -200,7 +200,7 @@ interface Node<T> {
Node<T> build(); Node<T> build();
/** /**
* Specialized @{code Node.Builder} for int elements * Specialized {@code Node.Builder} for int elements
*/ */
interface OfInt extends Node.Builder<Integer>, Sink.OfInt { interface OfInt extends Node.Builder<Integer>, Sink.OfInt {
@Override @Override
@ -208,7 +208,7 @@ interface Node<T> {
} }
/** /**
* Specialized @{code Node.Builder} for long elements * Specialized {@code Node.Builder} for long elements
*/ */
interface OfLong extends Node.Builder<Long>, Sink.OfLong { interface OfLong extends Node.Builder<Long>, Sink.OfLong {
@Override @Override
@ -216,7 +216,7 @@ interface Node<T> {
} }
/** /**
* Specialized @{code Node.Builder} for double elements * Specialized {@code Node.Builder} for double elements
*/ */
interface OfDouble extends Node.Builder<Double>, Sink.OfDouble { interface OfDouble extends Node.Builder<Double>, Sink.OfDouble {
@Override @Override

View file

@ -170,7 +170,7 @@ final class Nodes {
} }
/** /**
* Produces a variable size @{link Node.Builder}. * Produces a variable size {@link Node.Builder}.
* *
* @param <T> the type of elements of the node builder * @param <T> the type of elements of the node builder
* @return a {@code Node.Builder} * @return a {@code Node.Builder}
@ -208,7 +208,7 @@ final class Nodes {
} }
/** /**
* Produces a variable size @{link Node.Builder.OfInt}. * Produces a variable size {@link Node.Builder.OfInt}.
* *
* @return a {@code Node.Builder.OfInt} * @return a {@code Node.Builder.OfInt}
*/ */
@ -245,7 +245,7 @@ final class Nodes {
} }
/** /**
* Produces a variable size @{link Node.Builder.OfLong}. * Produces a variable size {@link Node.Builder.OfLong}.
* *
* @return a {@code Node.Builder.OfLong} * @return a {@code Node.Builder.OfLong}
*/ */
@ -282,7 +282,7 @@ final class Nodes {
} }
/** /**
* Produces a variable size @{link Node.Builder.OfDouble}. * Produces a variable size {@link Node.Builder.OfDouble}.
* *
* @return a {@code Node.Builder.OfDouble} * @return a {@code Node.Builder.OfDouble}
*/ */

View file

@ -163,7 +163,7 @@ abstract class PipelineHelper<P_OUT> {
abstract<P_IN> Spliterator<P_OUT> wrapSpliterator(Spliterator<P_IN> spliterator); abstract<P_IN> Spliterator<P_OUT> wrapSpliterator(Spliterator<P_IN> spliterator);
/** /**
* Constructs a @{link Node.Builder} compatible with the output shape of * Constructs a {@link Node.Builder} compatible with the output shape of
* this {@code PipelineHelper}. * this {@code PipelineHelper}.
* *
* @param exactSizeIfKnown if >=0 then a builder will be created that has a * @param exactSizeIfKnown if >=0 then a builder will be created that has a

View file

@ -626,7 +626,7 @@ class Feedback {
} }
/** /**
* Set mode. Create, changed, or delete a feedback mode. For @{code /set * Set mode. Create, changed, or delete a feedback mode. For {@code /set
* mode <mode> [<old-mode>] [-command|-quiet|-delete|-retain]}. * mode <mode> [<old-mode>] [-command|-quiet|-delete|-retain]}.
* *
* @return true if successful * @return true if successful

View file

@ -36,7 +36,7 @@ public class ClassFileFinder {
* classpath. * classpath.
* *
* @param name a classname * @param name a classname
* @param classPath @{link File.pathSeparator} separated directories * @param classPath {@link File.pathSeparator} separated directories
* @return an absolute path to the found classfile, or null if it cannot be * @return an absolute path to the found classfile, or null if it cannot be
* found * found
*/ */

View file

@ -26,7 +26,7 @@ import java.io.StringWriter;
import java.util.*; import java.util.*;
/** /**
* This class accumulates test results. Test results can be checked with method @{code checkStatus}. * This class accumulates test results. Test results can be checked with method {@code checkStatus}.
*/ */
public class TestResult extends TestBase { public class TestResult extends TestBase {