}

Java: error: Double.MIN_NORMAL not found

Created:

When you see the error Double.MIN_NORMAL not defined you should use the following:

Double.longBitsToDouble(0x0010000000000000L)

Double.MIN_NORMAL is the smallest postive value of the type double. The value is 2-1022.

Leave a comment if this did not work as a solution