X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2FPluginStoreConfigurationBackend.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2FPluginStoreConfigurationBackend.java;h=5e30de1289de4249ecb4d488948156fe16932545;hp=68153710c18fa71c5d017a6267069ec98adb3653;hb=c0b3a62905c6a242a0b2318286238381cafa7153;hpb=41f892668a236e46c5ac5f3e9b901a4c2dbec6de diff --git a/src/main/java/net/pterodactylus/sone/freenet/PluginStoreConfigurationBackend.java b/src/main/java/net/pterodactylus/sone/freenet/PluginStoreConfigurationBackend.java index 6815371..5e30de1 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/PluginStoreConfigurationBackend.java +++ b/src/main/java/net/pterodactylus/sone/freenet/PluginStoreConfigurationBackend.java @@ -17,7 +17,6 @@ package net.pterodactylus.sone.freenet; -import java.util.logging.Level; import java.util.logging.Logger; import net.pterodactylus.util.config.AttributeNotFoundException; @@ -37,6 +36,7 @@ import freenet.pluginmanager.PluginStore; public class PluginStoreConfigurationBackend implements ExtendedConfigurationBackend { /** The logger. */ + @SuppressWarnings("unused") private static final Logger logger = Logging.getLogger(PluginStoreConfigurationBackend.class); /** The plugin respirator. */ @@ -169,18 +169,15 @@ public class PluginStoreConfigurationBackend implements ExtendedConfigurationBac save(); } - // - // PRIVATE METHODS - // - /** - * Saves the configuration to the plugin store. + * {@inheritDoc} */ - private void save() { + @Override + public void save() throws ConfigurationException { try { pluginRespirator.putStore(pluginStore); } catch (DatabaseDisabledException dde1) { - logger.log(Level.WARNING, "Could not store plugin store, database is disabled.", dde1); + throw new ConfigurationException("Could not store plugin store, database is disabled.", dde1); } }