diff options
author | UbitUmarov | 2016-08-13 23:41:57 +0100 |
---|---|---|
committer | UbitUmarov | 2016-08-13 23:41:57 +0100 |
commit | 1337f5f26e628dc7c5d038ffee5e957d95a72566 (patch) | |
tree | e022d04db0e0174ade41f0c497651f5ff2115c03 /OpenSim/Services/Interfaces | |
parent | add some wiring to have GetUserAccounts for multiple IDs on a single request... (diff) | |
download | opensim-SC-1337f5f26e628dc7c5d038ffee5e957d95a72566.zip opensim-SC-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.gz opensim-SC-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.bz2 opensim-SC-1337f5f26e628dc7c5d038ffee5e957d95a72566.tar.xz |
remove a parameter for detection of grid fail to suport getting multiple user accounts per call and handle it where needed.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserAccountService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index 1914040..c6f3ef3 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs | |||
@@ -187,7 +187,7 @@ namespace OpenSim.Services.Interfaces | |||
187 | /// <returns></returns> | 187 | /// <returns></returns> |
188 | List<UserAccount> GetUserAccounts(UUID scopeID, string query); | 188 | List<UserAccount> GetUserAccounts(UUID scopeID, string query); |
189 | List<UserAccount> GetUserAccountsWhere(UUID scopeID, string where); | 189 | List<UserAccount> GetUserAccountsWhere(UUID scopeID, string where); |
190 | List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs, out bool suported); | 190 | List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs); |
191 | 191 | ||
192 | /// <summary> | 192 | /// <summary> |
193 | /// Store the data given, wich replaces the stored data, therefore must be complete. | 193 | /// Store the data given, wich replaces the stored data, therefore must be complete. |