add saveConfiguration stub
[jSite2.git] / 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()");
+       }
+
 }