From f2320abc11c2365df0866601c8e96c0ba216584a Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 25 May 2011 01:22:02 +0100 Subject: [PATCH] config: fix style --- SparkleLib/SparkleConfig.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleLib/SparkleConfig.cs b/SparkleLib/SparkleConfig.cs index 1a426fa6..8fa4acf1 100644 --- a/SparkleLib/SparkleConfig.cs +++ b/SparkleLib/SparkleConfig.cs @@ -105,14 +105,14 @@ namespace SparkleLib { if (!File.Exists (Path)) throw new ConfigFileNotFoundException (Path + " does not exist"); - base.Save (Path); + Save (Path); } } public class ConfigFileNotFoundException : Exception { - public ConfigFileNotFoundException (string message) - : base (message) { } + public ConfigFileNotFoundException (string message) : + base (message) { } } } \ No newline at end of file