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:
@@ -109,6 +109,11 @@ public abstract class ConfigureSource<
|
|||||||
return section().contains(path);
|
return section().contains(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void remove(@NotNull String path) {
|
||||||
|
section().remove(path);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public @Nullable List<?> getList(@NotNull String path) {
|
public @Nullable List<?> getList(@NotNull String path) {
|
||||||
return section().getList(path);
|
return section().getList(path);
|
||||||
|
|||||||
Reference in New Issue
Block a user