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

docs: Add more javadocs

This commit is contained in:
2025-02-18 17:33:28 +08:00
parent 00170e6d77
commit bf716b06ae
6 changed files with 401 additions and 12 deletions
@@ -88,6 +88,16 @@ public class MemorySection implements ConfigureSection {
}
}
@Override
public void remove(@NotNull String path) {
MemorySection section = getSectionFor(path);
if (section != this) {
section.remove(childPath(path));
} else {
this.data.remove(path);
}
}
@Override
public boolean contains(@NotNull String path) {
return get(path) != null;