Skip to content

Commit ddd29aa

Browse files
committed
📦 Fix compile error
1 parent 6f01576 commit ddd29aa

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/java/com/mrcrayfish/configured/client/screen/list

1 file changed

+1
-1
lines changed

common/src/main/java/com/mrcrayfish/configured/client/screen/list/ListTypes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
public 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");

0 commit comments

Comments
 (0)