From a90d724d123abf18b3839b79573093a21010c5a2 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sat, 25 May 2013 00:37:27 -0400 Subject: [PATCH] Add iconic css to base page --- src/main/java/com/gitblit/IStoredSettings.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gitblit/IStoredSettings.java b/src/main/java/com/gitblit/IStoredSettings.java index 790f8b6..246262d 100644 --- a/src/main/java/com/gitblit/IStoredSettings.java +++ b/src/main/java/com/gitblit/IStoredSettings.java @@ -288,6 +288,16 @@ } /** + * Override the specified key with the specified value. + * + * @param key + * @param value + */ + public void overrideSetting(String key, int value) { + overrides.put(key, "" + value); + } + + /** * Updates the values for the specified keys and persists the entire * configuration file. * -- Gitblit v1.9.1