-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: repo-valhalla
-
Component/s: tools
javap prints strict fields like this:
final strictfp int i;
descriptor: I
flags: (0x0810) ACC_FINAL, ACC_STRICT
ConstantValue: int 0
The 'strictfp` modifier looks wrong, because field strictness has nothing to do with floating point encoding.
Suggested output:
final strict int i;
final strictfp int i;
descriptor: I
flags: (0x0810) ACC_FINAL, ACC_STRICT
ConstantValue: int 0
The 'strictfp` modifier looks wrong, because field strictness has nothing to do with floating point encoding.
Suggested output:
final strict int i;