From 55be4a9e8373d72a9e1c25a3c8150651bb19679d Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 23 Jun 2008 08:27:34 +0200 Subject: [PATCH] add saveConfiguration stub --- src/net/pterodactylus/jsite/core/InsertManager.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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()"); + } + } -- 2.7.4