aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
diff options
context:
space:
mode:
authorJeff Ames2008-07-06 14:02:22 +0000
committerJeff Ames2008-07-06 14:02:22 +0000
commitd470d30c09fde202f708a9c8af763f5d16e18bfb (patch)
tree6a86572d268dda911a5208bf5be1a1f2c19adc3c /OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
parentRemove scripts that don't really belong in OpenSim SVN. (diff)
downloadopensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.zip
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.gz
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.bz2
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.xz
Copyright notices and formatting cleanup.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_Types.cs4
1 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 bfdc686..1e2e573 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
@@ -1295,7 +1295,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1295 1295
1296 public override bool Equals(Object o) 1296 public override bool Equals(Object o)
1297 { 1297 {
1298 if(!(o is LSLInteger)) 1298 if (!(o is LSLInteger))
1299 return false; 1299 return false;
1300 return value == ((LSLInteger)o).value; 1300 return value == ((LSLInteger)o).value;
1301 } 1301 }
@@ -1452,7 +1452,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1452 1452
1453 public override bool Equals(Object o) 1453 public override bool Equals(Object o)
1454 { 1454 {
1455 if(!(o is LSLFloat)) 1455 if (!(o is LSLFloat))
1456 return false; 1456 return false;
1457 return value == ((LSLFloat)o).value; 1457 return value == ((LSLFloat)o).value;
1458 } 1458 }