On Wed, 19 Oct 2022 12:38:54 GMT, Douglas Held <[email protected]> wrote:
>> modules/javafx.graphics/src/main/java/javafx/geometry/Point3D.java line 417:
>>
>>> 415: * {@code getX}, {@code getY}, and {@code getZ} methods are equal.
>>> 416: *
>>> 417: * @param {@code obj} the reference object with which to compare
>>
>> Don't use `@code` for the parameter declaration, they are treated
>> automatically by the javadoc tool.
>
> Don't use it for `obj` you mean?
Here, yes. The parameter name following `@param` is taken care of automatically
(a hyphen is also added after it).
-------------
PR: https://git.openjdk.org/jfx/pull/913