diff options
author | Diva Canto | 2013-04-27 10:34:13 -0700 |
---|---|---|
committer | Diva Canto | 2013-04-27 10:34:13 -0700 |
commit | f675d465b27bfecab59213bd19c6e070a6482f88 (patch) | |
tree | c432cacd0152dcabf56c8cea9ed70d6b62c1a16a | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-f675d465b27bfecab59213bd19c6e070a6482f88.zip opensim-SC_OLD-f675d465b27bfecab59213bd19c6e070a6482f88.tar.gz opensim-SC_OLD-f675d465b27bfecab59213bd19c6e070a6482f88.tar.bz2 opensim-SC_OLD-f675d465b27bfecab59213bd19c6e070a6482f88.tar.xz |
Make method virtual
-rw-r--r-- | OpenSim/Services/UserAccountService/GridUserService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/UserAccountService/GridUserService.cs b/OpenSim/Services/UserAccountService/GridUserService.cs index 43fa04b..8388180 100644 --- a/OpenSim/Services/UserAccountService/GridUserService.cs +++ b/OpenSim/Services/UserAccountService/GridUserService.cs | |||
@@ -73,7 +73,7 @@ namespace OpenSim.Services.UserAccountService | |||
73 | return info; | 73 | return info; |
74 | } | 74 | } |
75 | 75 | ||
76 | public GridUserInfo[] GetGridUserInfo(string[] userIDs) | 76 | public virtual GridUserInfo[] GetGridUserInfo(string[] userIDs) |
77 | { | 77 | { |
78 | List<GridUserInfo> ret = new List<GridUserInfo>(); | 78 | List<GridUserInfo> ret = new List<GridUserInfo>(); |
79 | 79 | ||