Fix for annoying warning, from Carmina.

This commit is contained in:
zippy 2006-11-09 03:07:38 +00:00
parent d26a6fc177
commit a2be513b24

View file

@ -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
}
}