use of com.moandjiezana.toml.Toml in project Orchid by JavaEden.
the class TOMLParser method parse.
@Override
public JSONElement parse(String extension, String input) {
Toml toml = new Toml().read(input);
JSONObject object = new JSONObject(toml.toMap());
return new JSONElement(object);
}
Aggregations