RFR: 8146691: @since 9 tag missing for System.getLogger
Mandy Chung
mandy.chung at oracle.com
Fri Jan 8 17:22:48 UTC 2016
+1
Mandy
> On Jan 8, 2016, at 7:51 AM, Daniel Fuchs <daniel.fuchs at oracle.com> wrote:
>
>
>
>
> Hi,
>
> Please find below a trivial fix for
> 8146691: @since 9 tag missing for System.getLogger
>
> https://bugs.openjdk.java.net/browse/JDK-8146691
>
> best regards,
>
> -- daniel
>
>
> --- old/src/java.base/share/classes/java/lang/System.java 2016-01-08 16:45:12.000000000 +0100
> +++ new/src/java.base/share/classes/java/lang/System.java 2016-01-08 16:45:12.000000000 +0100
> @@ -1535,6 +1535,8 @@
> * @return an instance of {@link Logger} that can be used by the calling
> * class.
> * @throws NullPointerException if {@code name} is {@code null}.
> + *
> + * @since 9
> */
> @CallerSensitive
> public static Logger getLogger(String name) {
> @@ -1572,6 +1574,8 @@
> * resource bundle for message localization.
> * @throws NullPointerException if {@code name} is {@code null} or
> * {@code bundle} is {@code null}.
> + *
> + * @since 9
> */
> @CallerSensitive
> public static Logger getLogger(String name, ResourceBundle bundle) {
More information about the core-libs-dev
mailing list