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 {
5E5, +5E5, -5E5, 5E+5, 5E-5,
2.5e5, +2.5e5, -2.5e5, 2.5e+5, 2.5e-5,
2.5E5, +2.5E5, -2.5E5, 2.5E+5, 2.5E-5,
5e5f, 5e5F, 5e5d, 5e5D
5e5f, 5e5F, 5e5d, 5e5D,
5.e-6, 7.e+8, 9.E-1, 2.E+3, 4.e5, 6.E7
};
}