diff options
author | Justin Clarke Casey | 2008-09-21 20:56:39 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-21 20:56:39 +0000 |
commit | 451bd5a0ca87987759d82df681b66da499d41191 (patch) | |
tree | d7eb0c0c4ddb835bb76317c6891e12c60c8ef864 /OpenSim/Region | |
parent | Mantis#2233. Thank you kindly, Idb, for a patch that solves: (diff) | |
download | opensim-SC_OLD-451bd5a0ca87987759d82df681b66da499d41191.zip opensim-SC_OLD-451bd5a0ca87987759d82df681b66da499d41191.tar.gz opensim-SC_OLD-451bd5a0ca87987759d82df681b66da499d41191.tar.bz2 opensim-SC_OLD-451bd5a0ca87987759d82df681b66da499d41191.tar.xz |
* minor: warnings removal
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs index 5bfe8bf..bff2101 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | |||
@@ -1373,7 +1373,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1373 | value = int.Parse(v, System.Globalization.NumberStyles.Integer); | 1373 | value = int.Parse(v, System.Globalization.NumberStyles.Integer); |
1374 | } | 1374 | } |
1375 | } | 1375 | } |
1376 | catch (OverflowException oe) | 1376 | catch (OverflowException) |
1377 | { | 1377 | { |
1378 | value = -1; | 1378 | value = -1; |
1379 | } | 1379 | } |
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index d107d90..b8d72e0 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -1455,7 +1455,7 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
1455 | value = int.Parse(v, | 1455 | value = int.Parse(v, |
1456 | System.Globalization.NumberStyles.Integer); | 1456 | System.Globalization.NumberStyles.Integer); |
1457 | } | 1457 | } |
1458 | catch (OverflowException oe) | 1458 | catch (OverflowException) |
1459 | { | 1459 | { |
1460 | value = -1; | 1460 | value = -1; |
1461 | } | 1461 | } |