JDK-8148820 : Missing @since Javadoc tag in Logger.log(Level, Supplier)
  • Type: Bug
  • Component: core-libs
  • Sub-Component: java.util.logging
  • Affected Version: 8u72,9
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2016-02-01
  • Updated: 2016-07-21
  • Resolved: 2016-03-02
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 8 JDK 9
8u102Fixed 9 b109Fixed
Description
FULL PRODUCT VERSION :


A DESCRIPTION OF THE PROBLEM :
In Java 8, a new method was added to java.util.logging.Logger:

https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html#log-java.util.logging.Level-java.util.function.Supplier-

However, it lacks the @since Javadoc tag


REPRODUCIBILITY :
This bug can be reproduced always.


Comments
As stated by submitter, @since tag is missing for the method public void log(Level level, Supplier<String> msgSupplier) in JDK 8 and 9 Java API docs. https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html#log-java.util.logging.Level-java.util.function.Supplier-
02-02-2016