agrison / jtoml

TOML for Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TOML_SUPPORTED in Util is missing Integer.class

dredhorse opened this issue · comments

TOML_SUPPORTED should be:

    /**
     * List of types supported Natively by TOML + Map
     */
    static final Set<Class<?>> TOML_SUPPORTED = new HashSet<Class<?>>(Arrays.asList(Integer.class, Long.class, Double.class, //
            Calendar.class, Boolean.class, String.class, List.class, Map.class));

Indeed you're right, I'll fix it.
Thank you @dredhorse