Fix a couple nits.

This commit is contained in:
Jeremy Wood 2023-03-27 01:03:21 -04:00
parent 7b39d78bfd
commit 61cd593844
No known key found for this signature in database
GPG Key ID: C5BAD04C77B91B4B
2 changed files with 4 additions and 4 deletions

View File

@ -30,10 +30,7 @@ public class MVCoreConfig implements MVConfig {
private final ConfigHandle configHandle;
@Inject
MVCoreConfig(
@NotNull MultiverseCore core,
@NotNull PluginManager pluginManager
) {
MVCoreConfig(@NotNull MultiverseCore core, @NotNull PluginManager pluginManager) {
this.configPath = Path.of(core.getDataFolder().getPath(), CONFIG_FILENAME);
this.configNodes = new MVCoreConfigNodes(pluginManager);
this.configHandle = ConfigHandle.builder(configPath)

View File

@ -42,8 +42,11 @@ public class ConfigHandle {
return new Builder(configPath);
}
@NotNull
protected final Path configPath;
@Nullable
protected final Logger logger;
@NotNull
protected final NodeGroup nodes;
protected final ConfigMigrator migrator;