aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService/GridUserService.cs
diff options
context:
space:
mode:
authorUbitUmarov2019-10-22 13:04:01 +0100
committerUbitUmarov2019-10-22 13:04:01 +0100
commit46e36601cb3c54e6e441284aed7c0c5c35970a4c (patch)
treebf52486c1e8edaae327d7d93ea3ae6e6fd48a61d /OpenSim/Services/UserAccountService/GridUserService.cs
parentremove some more useless NULL arguments (diff)
downloadopensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.zip
opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.gz
opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.bz2
opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.xz
remove some more useless NULL arguments
Diffstat (limited to '')
-rwxr-xr-xOpenSim/Services/UserAccountService/GridUserService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/UserAccountService/GridUserService.cs b/OpenSim/Services/UserAccountService/GridUserService.cs
index 6cea69f..d1e92ab 100755
--- a/OpenSim/Services/UserAccountService/GridUserService.cs
+++ b/OpenSim/Services/UserAccountService/GridUserService.cs
@@ -94,7 +94,7 @@ namespace OpenSim.Services.UserAccountService
94 MainConsole.Instance.Output(cdl.ToString()); 94 MainConsole.Instance.Output(cdl.ToString());
95 } 95 }
96 96
97 MainConsole.Instance.Output("Entries: {0}", null, data.Length); 97 MainConsole.Instance.Output("Entries: {0}", data.Length);
98 } 98 }
99 99
100 protected void HandleShowGridUsersOnline(string module, string[] cmdparams) 100 protected void HandleShowGridUsersOnline(string module, string[] cmdparams)
@@ -123,7 +123,7 @@ namespace OpenSim.Services.UserAccountService
123 } 123 }
124 } 124 }
125 125
126 MainConsole.Instance.Output("Users online: {0}", null, onlineRecentlyCount); 126 MainConsole.Instance.Output("Users online: {0}", onlineRecentlyCount);
127 } 127 }
128 128
129 private GridUserData GetGridUserData(string userID) 129 private GridUserData GetGridUserData(string userID)