File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
common/src/main/java/com/mrcrayfish/configured/client/screen/list Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 1616
1717public class ListTypes
1818{
19- private static final IListType <?> UNKNOWN = new ListType <>(Object ::toString , o -> o , "configured.parser.not_a_value" );
19+ public static final IListType <?> UNKNOWN = new ListType <>(Object ::toString , o -> o , "configured.parser.not_a_value" );
2020 public static final IListType <Boolean > BOOLEAN = new ListType <>(Object ::toString , Boolean ::valueOf , "configured.parser.not_a_boolean" );
2121 public static final IListType <Integer > INTEGER = new ListType <>(Object ::toString , Ints ::tryParse , "configured.parser.not_a_number" );
2222 public static final IListType <Long > LONG = new ListType <>(Object ::toString , Longs ::tryParse , "configured.parser.not_a_number" );
You can’t perform that action at this time.
0 commit comments