Open
Description
My code:
public static void main(String[] args) throws Exception {
Config conf = ConfigFactory.parseString("x: 0.00001");
String rendered = conf.resolve().root().render();
System.out.println(rendered);
}
output is:
{
# String: 1
"x" : 1.0E-5
}
I prefer 0.00001 rather than 1.0E-5, so my question is how to prevent the transformation