diff --git a/jdk/src/java.base/share/classes/jdk/internal/vm/annotation/ReservedStackAccess.java b/jdk/src/java.base/share/classes/jdk/internal/vm/annotation/ReservedStackAccess.java index 72ddc4c30f6..a421b6d240f 100644 --- a/jdk/src/java.base/share/classes/jdk/internal/vm/annotation/ReservedStackAccess.java +++ b/jdk/src/java.base/share/classes/jdk/internal/vm/annotation/ReservedStackAccess.java @@ -45,7 +45,7 @@ import java.lang.annotation.Target; * throw a delayed StackOverflowError when the thread exits the annotated * method. * - * @since 1.9 + * @since 9 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD, ElementType.CONSTRUCTOR}) diff --git a/jdk/src/java.logging/share/classes/java/util/logging/SimpleFormatter.java b/jdk/src/java.logging/share/classes/java/util/logging/SimpleFormatter.java index 3f18d43ea21..07aa937e91e 100644 --- a/jdk/src/java.logging/share/classes/java/util/logging/SimpleFormatter.java +++ b/jdk/src/java.logging/share/classes/java/util/logging/SimpleFormatter.java @@ -135,7 +135,7 @@ public class SimpleFormatter extends Formatter { * SEVERE: several message with an exception * *
  • {@code java.util.logging.SimpleFormatter.format="%1$tb %1$td, %1$tY %1$tl:%1$tM:%1$tS.%1$tN %1$Tp %2$s%n%4$s: %5$s%6$s%n"} - *

    Since JDK 1.9, {@code java.util.logging} uses {@link + *

    Since JDK 9, {@code java.util.logging} uses {@link * java.time.Clock#systemUTC() java.time} to create more precise time * stamps. * The format above can be used to add a {@code .%1$tN} to the diff --git a/jdk/src/java.logging/share/classes/java/util/logging/XMLFormatter.java b/jdk/src/java.logging/share/classes/java/util/logging/XMLFormatter.java index e39494135ca..c3abc2ee9f7 100644 --- a/jdk/src/java.logging/share/classes/java/util/logging/XMLFormatter.java +++ b/jdk/src/java.logging/share/classes/java/util/logging/XMLFormatter.java @@ -41,7 +41,7 @@ import java.util.*; * but it is recommended that it normally be used with UTF-8. The * character encoding can be set on the output Handler. * - * @implSpec Since JDK 1.9, instances of {@linkplain LogRecord} contain + * @implSpec Since JDK 9, instances of {@linkplain LogRecord} contain * an {@link LogRecord#getInstant() Instant} which can have nanoseconds below * the millisecond resolution. * The DTD specification has been updated to allow for an optional @@ -84,7 +84,7 @@ public class XMLFormatter extends Formatter { * Creates a new instance of XMLFormatter. * * @implSpec - * Since JDK 1.9, the XMLFormatter will print out the record {@linkplain + * Since JDK 9, the XMLFormatter will print out the record {@linkplain * LogRecord#getInstant() event time} as an Instant. This instant * has the best resolution available on the system. The {@code } * element will contain the instant as formatted by the {@link