mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
use some shared char arrays on string split
This commit is contained in:
@@ -536,7 +536,7 @@ namespace OpenSim.Framework
|
||||
|
||||
if (p.PropertyType.IsArray)
|
||||
{
|
||||
string[] elements = ((string)map[p.Name]).Split(new char[] { ',' });
|
||||
string[] elements = ((string)map[p.Name]).Split(Util.SplitCommaArray);
|
||||
UUID[] uuids = new UUID[elements.Length];
|
||||
int i = 0;
|
||||
foreach (string e in elements)
|
||||
|
||||
Reference in New Issue
Block a user