diff options
author | Melanie | 2010-03-04 10:38:03 +0000 |
---|---|---|
committer | Melanie | 2010-03-04 10:45:46 +0000 |
commit | 84b0a23e193b220d61b5a67e90df32138441c1e8 (patch) | |
tree | 84a5c98b2bf371d6da55276fc9929676d2198d08 | |
parent | Fix a few compiler warnings. (diff) | |
download | opensim-SC_OLD-84b0a23e193b220d61b5a67e90df32138441c1e8.zip opensim-SC_OLD-84b0a23e193b220d61b5a67e90df32138441c1e8.tar.gz opensim-SC_OLD-84b0a23e193b220d61b5a67e90df32138441c1e8.tar.bz2 opensim-SC_OLD-84b0a23e193b220d61b5a67e90df32138441c1e8.tar.xz |
Remove a superfluous array creation
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index e87b1f4..1ea52c5 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -416,7 +416,6 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
416 | 416 | ||
417 | public list(params object[] args) | 417 | public list(params object[] args) |
418 | { | 418 | { |
419 | m_data = new object[args.Length]; | ||
420 | m_data = args; | 419 | m_data = args; |
421 | } | 420 | } |
422 | 421 | ||