From 999c9f3ca26578b0b1dcb75e009a390c689d6504 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 22 May 2011 22:10:30 +0100 Subject: [PATCH] controller: fix compiler warning --- SparkleShare/SparkleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index bdb6e449..387e23ca 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -685,7 +685,7 @@ namespace SparkleShare { foreach (DirectoryInfo directory in parent.GetDirectories()) size += CalculateFolderSize (directory); - } catch (DirectoryNotFoundException e) { + } catch (DirectoryNotFoundException) { return 0; }