#417: Half precision support (clean-up)

This commit is contained in:
Harald Kuhr 2021-04-10 18:13:04 +02:00
parent 9adf0f4da3
commit b4ef5823f3

View File

@ -116,7 +116,6 @@ public final class Half extends Number implements Comparable<Half> {
*
*/
public static short floatToShortBits(final float floatValue) {
// TODO: Is this okay? Need test
return (short) floatTo16Bits(floatValue);
}