mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
use some shared char arrays on string split
This commit is contained in:
@@ -279,7 +279,7 @@ namespace OpenSim.Data.PGSQL
|
||||
|
||||
public UserAccountData[] GetUsers(UUID scopeID, string query)
|
||||
{
|
||||
string[] words = query.Split(new char[] { ' ' });
|
||||
string[] words = query.Split();
|
||||
|
||||
for (int i = 0; i < words.Length; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user