controller: fix compiler warning

This commit is contained in:
Hylke Bons 2011-05-22 22:10:30 +01:00
parent f0604837a0
commit 999c9f3ca2

View file

@ -685,7 +685,7 @@ namespace SparkleShare {
foreach (DirectoryInfo directory in parent.GetDirectories())
size += CalculateFolderSize (directory);
} catch (DirectoryNotFoundException e) {
} catch (DirectoryNotFoundException) {
return 0;
}