1
mirror of https://github.com/CarmJos/EasyConfiguration.git synced 2026-06-04 18:48:20 +08:00

fix: Fixed the missing implements of #remove

This commit is contained in:
2025-02-19 00:57:17 +08:00
parent 476cb79e2f
commit 1c27c2f881
@@ -109,6 +109,11 @@ public abstract class ConfigureSource<
return section().contains(path);
}
@Override
public void remove(@NotNull String path) {
section().remove(path);
}
@Override
public @Nullable List<?> getList(@NotNull String path) {
return section().getList(path);