diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/UserAccountService/UserAccountService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index fbe5e3b..668fe53 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs | |||
@@ -265,9 +265,9 @@ namespace OpenSim.Services.UserAccountService | |||
265 | return MakeUserAccount(d[0]); | 265 | return MakeUserAccount(d[0]); |
266 | } | 266 | } |
267 | 267 | ||
268 | public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs, out bool suported) | 268 | public List<UserAccount> GetUserAccounts(UUID scopeID, List<string> IDs) |
269 | { | 269 | { |
270 | suported = true; | 270 | // do it one at a time db access should be fast, so no need to break its api |
271 | List<UserAccount> accs = new List<UserAccount>(); | 271 | List<UserAccount> accs = new List<UserAccount>(); |
272 | UUID uuid = UUID.Zero; | 272 | UUID uuid = UUID.Zero; |
273 | foreach(string id in IDs) | 273 | foreach(string id in IDs) |