JDK-8176517 : Fix doclint error in DatePicker control
  • Type: Bug
  • Component: javafx
  • Sub-Component: controls
  • Affected Version: 9
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2017-03-10
  • Updated: 2017-03-10
  • Resolved: 2017-03-10
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9Fixed
Related Reports
Relates :  
Description
This is a follow-up bug to JDK-8163385. The following doclint error was missed during the fix:

/localhome/kcr/javafx/9-kcr/jfx/rt/modules/javafx.controls/src/main/java/javafx/scene/control/DatePicker.java:72: error: reference not found
 * or by calling {@link #setValue(java.time.LocalDate) setValue()}.  The
                        ^

Comments
Changeset: ea2666fc4b4c Author: kcr Date: 2017-03-10 09:06 -0800 URL: http://hg.openjdk.java.net/openjfx/9-dev/rt/rev/ea2666fc4b4c 8176517: Fix doclint error in DatePicker control Reviewed-by: ckyang
10-03-2017

+1
10-03-2017

diff --git a/modules/javafx.controls/src/main/java/javafx/scene/control/DatePicker.java b/modules/javafx.controls/src/main/java/javafx/scene/control/DatePicker.java --- a/modules/javafx.controls/src/main/java/javafx/scene/control/DatePicker.java +++ b/modules/javafx.controls/src/main/java/javafx/scene/control/DatePicker.java @@ -69,7 +69,7 @@ * <p>The {@link #valueProperty() value} property represents the * currently selected {@link java.time.LocalDate}. An initial date can * be set via the {@link #DatePicker(java.time.LocalDate) constructor} - * or by calling {@link #setValue(java.time.LocalDate) setValue()}. The + * or by calling {@link #setValue setValue(LocalDate)}. The * default value is null. * * <pre><code>
10-03-2017