diff options
author | Melanie | 2010-03-04 10:38:03 +0000 |
---|---|---|
committer | Melanie | 2010-03-04 10:38:03 +0000 |
commit | 5d2f85428895b313029ffe3b67cc953c968d94ca (patch) | |
tree | 3c14903871e9665f4462518ad84308033fe3a310 /OpenSim | |
parent | * Better debug message on login problems. (diff) | |
download | opensim-SC_OLD-5d2f85428895b313029ffe3b67cc953c968d94ca.zip opensim-SC_OLD-5d2f85428895b313029ffe3b67cc953c968d94ca.tar.gz opensim-SC_OLD-5d2f85428895b313029ffe3b67cc953c968d94ca.tar.bz2 opensim-SC_OLD-5d2f85428895b313029ffe3b67cc953c968d94ca.tar.xz |
Remove a superfluous array creation
Diffstat (limited to 'OpenSim')
-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 | ||