Open
Description
Is your feature request related to a problem?
As this comment mentioned. There are too many parser class which implement Function<Setting, ?>
and Writeable
was added in Setting.java
. Here is the one of the Writeable Parser class public static class FloatParser implements Function<String, Float>, Writeable
in the Setting class
What solution would you like?
Create a separate class for these writeable parsers and store them in one place instead of Setting.java
class