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 e385902 commit ad66badCopy full SHA for ad66bad
src/main/java/com/falsepattern/lib/config/ConfigurationManager.java
@@ -204,7 +204,7 @@ public static List<IConfigElement> getConfigElements(Class<?> configClass) throw
204
.map((l) -> l.contains(configClass))
205
.orElse(false) ? conf : null)
206
.orElseThrow(() -> new ConfigException(
207
- "Tried to get config elements for non-registed config class!"));
+ "Tried to get config elements for non-registered config class!"));
208
val category = cfg.category();
209
val elements = new ConfigElement<>(rawConfig.getCategory(category)).getChildElements();
210
return elements.stream().map((element) -> new IConfigElementProxy(element, () -> {
0 commit comments