mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
use some shared char arrays on string split
This commit is contained in:
@@ -48,7 +48,7 @@ namespace OpenSim.Data.SQLite
|
||||
|
||||
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