From a2be513b243f26bc3ff4531e248dfdddd32030d0 Mon Sep 17 00:00:00 2001 From: zippy Date: Thu, 9 Nov 2006 03:07:38 +0000 Subject: [PATCH] Fix for annoying warning, from Carmina. --- Scripts/Commands/Docs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Commands/Docs.cs b/Scripts/Commands/Docs.cs index ffa5da24a..d69b96cde 100644 --- a/Scripts/Commands/Docs.cs +++ b/Scripts/Commands/Docs.cs @@ -403,7 +403,7 @@ namespace Server.Commands private static bool Document() { try { DeleteDirectory( "docs/" ); } - catch( System.IO.IOException e ) { return false; } + catch { return false; } EnsureDirectory( "docs/" ); EnsureDirectory( "docs/namespaces/" ); @@ -2627,4 +2627,4 @@ namespace Server.Commands } } #endregion -} \ No newline at end of file +}