jdk/src/java.base/share/classes/java/lang/Math.java
changeset 38460 f521277035db
parent 38455 43fec67d51a3
child 39656 25f808289769
--- a/jdk/src/java.base/share/classes/java/lang/Math.java	Sun May 22 19:06:23 2016 +0100
+++ b/jdk/src/java.base/share/classes/java/lang/Math.java	Sun May 22 18:23:02 2016 -0700
@@ -916,7 +916,7 @@
      * @param y the second value
      * @return the result
      * @throws ArithmeticException if the result overflows a long
-     * @since 1.9
+     * @since 9
      */
     public static long multiplyExact(long x, int y) {
         return multiplyExact(x, (long)y);
@@ -1186,7 +1186,7 @@
      * @throws ArithmeticException if the divisor {@code y} is zero
      * @see #floorMod(long, int)
      * @see #floor(double)
-     * @since 1.9
+     * @since 9
      */
     public static long floorDiv(long x, int y) {
         return floorDiv(x, (long)y);
@@ -1294,7 +1294,7 @@
      * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
      * @throws ArithmeticException if the divisor {@code y} is zero
      * @see #floorDiv(long, int)
-     * @since 1.9
+     * @since 9
      */
     public static int floorMod(long x, int y) {
         // Result cannot overflow the range of int.