-
Bug
-
Resolution: Fixed
-
P4
-
None
-
b06
-
Not verified
The ChoiceFormat class modified as part of JDK-8021322, does not use anymore the following constants
static final long SIGN = 0x8000000000000000L;
static final long EXPONENT = 0x7FF0000000000000L;
static final long POSITIVEINFINITY = 0x7FF0000000000000L;
These can be cleaned up.
static final long SIGN = 0x8000000000000000L;
static final long EXPONENT = 0x7FF0000000000000L;
static final long POSITIVEINFINITY = 0x7FF0000000000000L;
These can be cleaned up.
- relates to
-
JDK-8021322 [Fmt-Ch] Implementation of ChoiceFormat math methods should delegate to java.lang.Math methods
-
- Resolved
-