cosmetics

This commit is contained in:
UbitUmarov
2026-07-18 00:27:29 +01:00
parent 1b428a1825
commit 87fc4c1f51
6 changed files with 38 additions and 52 deletions

View File

@@ -42,7 +42,7 @@ namespace OpenSim.Data.MySQL
/// </summary>
public class MySQLGridUserData : MySQLGenericTableHandler<GridUserData>, IGridUserData
{
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
public MySQLGridUserData(string connectionString, string realm) : base(connectionString, realm, "GridUserStore") {}
@@ -58,6 +58,7 @@ namespace OpenSim.Data.MySQL
public GridUserData[] GetAll(string userID)
{
userID = MySqlHelper.EscapeString(userID);
return base.Get(String.Format("UserID LIKE '{0}%'", userID));
}
}