JDK 8 code review request for doclint fixes in java.time.format

roger riggs roger.riggs at oracle.com
Mon Jul 1 21:09:45 UTC 2013


These look fine.

(But I'm not an official reviewer.)

On 7/1/2013 4:55 PM, Joe Darcy wrote:
> Hello,
>
> The patch below resolves the two remaining doclint issues in 
> java.time.format.
>
> Thanks,
>
> -Joe
>
> --- a/src/share/classes/java/time/format/DateTimeFormatter.java Mon 
> Jul 01 13:42:03 2013 -0700
> +++ b/src/share/classes/java/time/format/DateTimeFormatter.java Mon 
> Jul 01 13:53:45 2013 -0700
> @@ -1304,6 +1304,7 @@
>       *  LocalTime time = parsed.query(LocalTime::from);
>       *  Period extraDays = 
> parsed.query(DateTimeFormatter.parsedExcessDays());
>       * </pre>
> +     * @return a query that provides access to the excess days that 
> were parsed
>       */
>      public static final TemporalQuery<Period> parsedExcessDays() {
>          return PARSED_EXCESS_DAYS;
> @@ -1344,6 +1345,7 @@
>       *    // validate leap-second is correct and apply correct smoothing
>       *  }
>       * </pre>
> +     * @return a query that provides access to whether a leap-second 
> was parsed
>       */
>      public static final TemporalQuery<Boolean> parsedLeapSecond() {
>          return PARSED_LEAP_SECOND;
>




More information about the core-libs-dev mailing list