We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b149723 commit 2ed360bCopy full SHA for 2ed360b
src/main/java/com/falsepattern/lib/internal/impl/config/ParsedConfiguration.java
@@ -74,6 +74,7 @@ public class ParsedConfiguration {
74
constructors.put(float.class, FloatConfigField::new);
75
constructors.put(Double.class, DoubleConfigField::new);
76
constructors.put(double.class, DoubleConfigField::new);
77
+ constructors.put(String.class, StringConfigField::new);
78
constructors.put(boolean[].class, BooleanListConfigField::new);
79
constructors.put(int[].class, IntListConfigField::new);
80
constructors.put(double[].class, DoubleListConfigField::new);
0 commit comments