jdk/src/java.base/share/classes/java/lang/Math.java
changeset 44263 7a9297d467e7
parent 41362 e09e871860a7
child 44924 dbfcc317533b
child 44851 3439a92526a0
--- a/jdk/src/java.base/share/classes/java/lang/Math.java	Wed Mar 15 18:08:46 2017 -0700
+++ b/jdk/src/java.base/share/classes/java/lang/Math.java	Wed Mar 15 19:24:56 2017 -0700
@@ -1079,6 +1079,7 @@
      * @param x the first value
      * @param y the second value
      * @return the result
+     * @since 9
      */
     public static long multiplyFull(int x, int y) {
         return (long)x * (long)y;
@@ -1091,6 +1092,7 @@
      * @param x the first value
      * @param y the second value
      * @return the result
+     * @since 9
      */
     public static long multiplyHigh(long x, long y) {
         if (x < 0 || y < 0) {