agrison / jtoml

TOML for Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't parse single character keys

hdxsfbr opened this issue · comments

This does not work:
Toml t = Toml.parse("a = -3");
 System.out.println(t.serialize());

but if the key is more than one char it works, like this:
Toml t = Toml.parse("ab = -3.1");
 System.out.println(t.serialize());