From: David ‘Bombe’ Roden Date: Mon, 23 Jun 2008 06:27:34 +0000 (+0200) Subject: add saveConfiguration stub X-Git-Url: https://git.pterodactylus.net/?p=jSite2.git;a=commitdiff_plain;h=55be4a9e8373d72a9e1c25a3c8150651bb19679d add saveConfiguration stub --- diff --git a/src/net/pterodactylus/jsite/core/InsertManager.java b/src/net/pterodactylus/jsite/core/InsertManager.java index 9d47da5..c91b513 100644 --- a/src/net/pterodactylus/jsite/core/InsertManager.java +++ b/src/net/pterodactylus/jsite/core/InsertManager.java @@ -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()"); + } + }