101101 * @spec https://standards.ieee.org/ieee/754/6210/
102102 * IEEE Standard for Floating-Point Arithmetic
103103 *
104- * @author Joseph D. Darcy
105104 * @since 1.3
106105 */
107106public final class StrictMath {
@@ -493,7 +492,6 @@ private static double floorOrCeil(double a,
493492 * @param a a value.
494493 * @return the closest floating-point value to {@code a} that is
495494 * equal to a mathematical integer.
496- * @author Joseph D. Darcy
497495 */
498496 public static double rint (double a ) {
499497 /*
@@ -2014,7 +2012,6 @@ public static float fma(float a, float b, float c) {
20142012 *
20152013 * @param d the floating-point value whose ulp is to be returned
20162014 * @return the size of an ulp of the argument
2017- * @author Joseph D. Darcy
20182015 * @since 1.5
20192016 */
20202017 public static double ulp (double d ) {
@@ -2041,7 +2038,6 @@ public static double ulp(double d) {
20412038 *
20422039 * @param f the floating-point value whose ulp is to be returned
20432040 * @return the size of an ulp of the argument
2044- * @author Joseph D. Darcy
20452041 * @since 1.5
20462042 */
20472043 public static float ulp (float f ) {
@@ -2062,7 +2058,6 @@ public static float ulp(float f) {
20622058 *
20632059 * @param d the floating-point value whose signum is to be returned
20642060 * @return the signum function of the argument
2065- * @author Joseph D. Darcy
20662061 * @since 1.5
20672062 */
20682063 public static double signum (double d ) {
@@ -2083,7 +2078,6 @@ public static double signum(double d) {
20832078 *
20842079 * @param f the floating-point value whose signum is to be returned
20852080 * @return the signum function of the argument
2086- * @author Joseph D. Darcy
20872081 * @since 1.5
20882082 */
20892083 public static float signum (float f ) {
0 commit comments