mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
minor: eliminate now unnecessary string.Format in postgresql RetrieveGroups method
This commit is contained in:
@@ -89,7 +89,7 @@ namespace OpenSim.Data.PGSQL
|
||||
}
|
||||
else
|
||||
{
|
||||
pattern = string.Format(" lower(\"Name\") LIKE lower('%:pattern%') ORDER BY lower(\"Name\") LIMIT 100");
|
||||
pattern = " lower(\"Name\") LIKE lower('%:pattern%') ORDER BY lower(\"Name\") LIMIT 100";
|
||||
return m_Groups.Get(pattern, new NpgsqlParameter("pattern", pattern));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user