From cccdf14e9bc5799145270828c04ff5cad89ec0ea Mon Sep 17 00:00:00 2001 From: Rsl1122 Date: Mon, 6 Aug 2018 11:21:33 +0300 Subject: [PATCH] Changed PlanSystem enable and disable methods --- .../com/djrapitops/plan/system/PlanSystem.java | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Plan/src/main/java/com/djrapitops/plan/system/PlanSystem.java b/Plan/src/main/java/com/djrapitops/plan/system/PlanSystem.java index fd0266e11..a62975d40 100644 --- a/Plan/src/main/java/com/djrapitops/plan/system/PlanSystem.java +++ b/Plan/src/main/java/com/djrapitops/plan/system/PlanSystem.java @@ -88,7 +88,7 @@ public abstract class PlanSystem implements SubSystem { public void enable() throws EnableException { checkSubSystemInitialization(); - SubSystem[] systems = new SubSystem[]{ + enableSystems( fileSystem, configSystem, localeSystem, @@ -102,7 +102,10 @@ public abstract class PlanSystem implements SubSystem { listenerSystem, taskSystem, hookHandler - }; + ); + } + + private void enableSystems(SubSystem... systems) throws EnableException { for (SubSystem system : systems) { system.enable(); } @@ -110,7 +113,7 @@ public abstract class PlanSystem implements SubSystem { @Override public void disable() { - SubSystem[] systems = new SubSystem[]{ + disableSystems( taskSystem, hookHandler, cacheSystem, @@ -124,7 +127,10 @@ public abstract class PlanSystem implements SubSystem { configSystem, fileSystem, versionCheckSystem - }; + ); + } + + private void disableSystems(SubSystem... systems) { for (SubSystem system : systems) { try { if (system != null) { @@ -141,6 +147,7 @@ public abstract class PlanSystem implements SubSystem { Verify.nullCheck(versionCheckSystem, () -> new IllegalStateException("Version Check system was not initialized.")); Verify.nullCheck(fileSystem, () -> new IllegalStateException("File system was not initialized.")); Verify.nullCheck(configSystem, () -> new IllegalStateException("Config system was not initialized.")); + Verify.nullCheck(localeSystem, () -> new IllegalStateException("Locale system was not initialized.")); Verify.nullCheck(databaseSystem, () -> new IllegalStateException("Database system was not initialized.")); Verify.nullCheck(infoSystem, () -> new IllegalStateException("Info system was not initialized.")); Verify.nullCheck(serverInfo, () -> new IllegalStateException("ServerInfo was not initialized."));