-
Bug
-
Resolution: Fixed
-
P3
-
repo-valhalla
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;