Remove a superfluous array creation
parent
13f0e4a718
commit
5d2f854288
|
@ -416,7 +416,6 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
|
|
||||||
public list(params object[] args)
|
public list(params object[] args)
|
||||||
{
|
{
|
||||||
m_data = new object[args.Length];
|
|
||||||
m_data = args;
|
m_data = args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue