jdk/src/java.base/share/classes/java/net/ServerSocket.java
changeset 35302 e4d2275861c3
parent 28852 a581c7868768
child 40696 d38ae985f810
--- a/jdk/src/java.base/share/classes/java/net/ServerSocket.java	Wed Jan 20 09:21:57 2016 -0800
+++ b/jdk/src/java.base/share/classes/java/net/ServerSocket.java	Wed Jan 20 11:02:36 2016 -0800
@@ -946,7 +946,7 @@
      *         {@link java.net.StandardSocketOptions StandardSocketOptions}
      *         do not require any security permission.
      *
-     * @since 1.9
+     * @since 9
      */
     public <T> ServerSocket setOption(SocketOption<T> name, T value)
         throws IOException
@@ -976,7 +976,7 @@
      *         {@link java.net.StandardSocketOptions StandardSocketOptions}
      *         do not require any security permission.
      *
-     * @since 1.9
+     * @since 9
      */
     public <T> T getOption(SocketOption<T> name) throws IOException {
         return getImpl().getOption(name);
@@ -994,7 +994,7 @@
      * @return A set of the socket options supported by this socket. This set
      *         may be empty if the socket's SocketImpl cannot be created.
      *
-     * @since 1.9
+     * @since 9
      */
     public Set<SocketOption<?>> supportedOptions() {
         synchronized (ServerSocket.class) {