* minor: warnings removal

This commit is contained in:
Justin Clarke Casey
2008-09-21 20:56:39 +00:00
parent 37da083de5
commit 451bd5a0ca
6 changed files with 20 additions and 20 deletions

View File

@@ -1373,7 +1373,7 @@ namespace OpenSim.Region.ScriptEngine.Common
value = int.Parse(v, System.Globalization.NumberStyles.Integer);
}
}
catch (OverflowException oe)
catch (OverflowException)
{
value = -1;
}

View File

@@ -1455,7 +1455,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
value = int.Parse(v,
System.Globalization.NumberStyles.Integer);
}
catch (OverflowException oe)
catch (OverflowException)
{
value = -1;
}