aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserService/UserService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/UserService/UserService.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Services/UserService/UserService.cs b/OpenSim/Services/UserService/UserService.cs
index 686ae20..2e6f7dc 100644
--- a/OpenSim/Services/UserService/UserService.cs
+++ b/OpenSim/Services/UserService/UserService.cs
@@ -57,18 +57,17 @@ namespace OpenSim.Services.UserAccountService
57 return null; 57 return null;
58 } 58 }
59 59
60 public bool SetUserAccount(UserAccount data, UUID principalID, string token) 60 public bool SetUserAccount(UserAccount data)
61 { 61 {
62 return false; 62 return false;
63 } 63 }
64 64
65 public bool CreateUserAccount(UserAccount data, UUID principalID, string token) 65 public bool CreateUserAccount(UserAccount data)
66 { 66 {
67 return false; 67 return false;
68 } 68 }
69 69
70 public List<UserAccount> GetUserAccounts(UUID scopeID, 70 public List<UserAccount> GetUserAccounts(UUID scopeID, string query)
71 string query)
72 { 71 {
73 return null; 72 return null;
74 } 73 }