diff --git a/OpenSim/Services/Connectors/User/UserServiceConnector.cs b/OpenSim/Services/Connectors/User/UserServiceConnector.cs index 2911e2f01d..0de8c1d1ca 100644 --- a/OpenSim/Services/Connectors/User/UserServiceConnector.cs +++ b/OpenSim/Services/Connectors/User/UserServiceConnector.cs @@ -96,12 +96,12 @@ namespace OpenSim.Services.Connectors return null; } - public bool SetUserAccount(UserAccount data, UUID principalID, string token) + public bool SetUserAccount(UserAccount data) { return false; } - public bool CreateUserAccount(UserAccount data, UUID principalID, string token) + public bool CreateUserAccount(UserAccount data) { return false; } diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index b6f8774a70..1089c6c859 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs @@ -97,9 +97,9 @@ namespace OpenSim.Services.Interfaces // Update all updatable fields // - bool SetUserAccount(UserAccount data, UUID PrincipalID, string token); + bool SetUserAccount(UserAccount data); // Creates a user data record - bool CreateUserAccount(UserAccount data, UUID PrincipalID, string token); + bool CreateUserAccount(UserAccount data); } } diff --git a/OpenSim/Services/UserService/UserService.cs b/OpenSim/Services/UserService/UserService.cs index 686ae20995..2e6f7dc3d0 100644 --- a/OpenSim/Services/UserService/UserService.cs +++ b/OpenSim/Services/UserService/UserService.cs @@ -57,18 +57,17 @@ namespace OpenSim.Services.UserAccountService return null; } - public bool SetUserAccount(UserAccount data, UUID principalID, string token) + public bool SetUserAccount(UserAccount data) { return false; } - public bool CreateUserAccount(UserAccount data, UUID principalID, string token) + public bool CreateUserAccount(UserAccount data) { return false; } - public List GetUserAccounts(UUID scopeID, - string query) + public List GetUserAccounts(UUID scopeID, string query) { return null; }