Change all copyright headers to include 2012.
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / PluginStoreConfigurationBackend.java
index eebfe3e..94a2690 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * FreenetSone - PluginStoreConfigurationBackend.java - Copyright © 2010 David Roden
+ * Sone - PluginStoreConfigurationBackend.java - Copyright © 2010–2012 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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. */
@@ -56,6 +56,9 @@ public class PluginStoreConfigurationBackend implements ExtendedConfigurationBac
        public PluginStoreConfigurationBackend(PluginRespirator pluginRespirator) throws DatabaseDisabledException {
                this.pluginRespirator = pluginRespirator;
                this.pluginStore = pluginRespirator.getStore();
+               if (this.pluginStore == null) {
+                       throw new DatabaseDisabledException();
+               }
        }
 
        /**
@@ -166,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);
                }
        }