--- 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) {