Fix for KT-14604 J2K Yet another floating point with exponent format

This commit is contained in:
Simon Ogorodnik
2016-11-07 20:05:16 +03:00
parent 7e82dd9adc
commit 2be4800307
5 changed files with 11 additions and 7 deletions
@@ -4,6 +4,7 @@ public class Exponent {
5E5f, +5E5f, -5E5f, 5E+5f, 5E-5f,
2.5e5f, +2.5e5f, -2.5e5f, 2.5e+5f, 2.5e-5f,
2.5E5f, +2.5E5f, -2.5E5f, 2.5E+5f, 2.5E-5f,
5e5f, 5e5F
5e5f, 5e5F,
5.e-6f, 7.e+8f, 9.E-1f, 2.E+3f, 4.e5f, 6.E7f
};
}