add saveConfiguration stub
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 23 Jun 2008 06:27:34 +0000 (08:27 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 23 Jun 2008 06:27:34 +0000 (08:27 +0200)
src/net/pterodactylus/jsite/core/InsertManager.java

index 9d47da5..c91b513 100644 (file)
@@ -191,6 +191,7 @@ public class InsertManager {
                String insertId = "insert-" + project.getId();
                Insert newInsert = new Insert(project, insertNode, insertId);
                inserts.put(insertId, newInsert);
+               saveConfiguration();
                fireInsertAdded(newInsert);
                /* TODO - start insert */
        }
@@ -214,4 +215,11 @@ public class InsertManager {
                logger.log(Level.FINEST, "loadConfiguration()");
        }
 
+       /**
+        * Saves the configuration.
+        */
+       private void saveConfiguration() {
+               logger.log(Level.FINEST, "saveConfiguration()");
+       }
+
 }