* Assorted spring cleanings.

This commit is contained in:
Adam Frisby
2008-05-01 14:45:56 +00:00
parent d51ce47b2d
commit 4692e92312
19 changed files with 28 additions and 48 deletions

View File

@@ -3074,7 +3074,7 @@ namespace OpenSim.Region.ScriptEngine.Common
{
return Convert.ToInt32(src.Data[index]);
}
catch (System.FormatException e)
catch (FormatException e)
{
return 0;
}
@@ -3109,7 +3109,7 @@ namespace OpenSim.Region.ScriptEngine.Common
{
return Convert.ToDouble(src.Data[index]);
}
catch (System.FormatException e)
catch (FormatException e)
{
return 0.0;
}