--- old/jdk/src/java.base/share/classes/java/net/NetworkInterface.java Wed Jan 6 14:54:06 2016 +++ new/jdk/src/java.base/share/classes/java/net/NetworkInterface.java Wed Jan 6 14:54:06 2016 @@ -130,7 +130,7 @@ * * @return a Stream object with all or a subset of the InetAddresses * bound to this network interface - * @since 1.9 + * @since 9 */ public Stream inetAddresses() { return streamFromArray(getCheckedInetAddresses()); @@ -208,7 +208,7 @@ * * @return a Stream object with all of the subinterfaces * of this network interface - * @since 1.9 + * @since 9 */ public Stream subInterfaces() { return streamFromArray(childs); @@ -362,7 +362,7 @@ * * @return a Stream of NetworkInterfaces found on this machine * @exception SocketException if an I/O error occurs. - * @since 1.9 + * @since 9 */ public static Stream networkInterfaces() throws SocketException {