mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
Change handler001 through handler009 to more
appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
This commit is contained in:
@@ -39,7 +39,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
public event SendStatResult OnSendStatsResult;
|
||||
|
||||
private SendStatResult handler001 = null;
|
||||
private SendStatResult handlerSendStatResult = null;
|
||||
|
||||
private enum Stats : uint
|
||||
{
|
||||
@@ -247,10 +247,10 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
statpack.Stat = sb;
|
||||
|
||||
handler001 = OnSendStatsResult;
|
||||
if (handler001 != null)
|
||||
handlerSendStatResult = OnSendStatsResult;
|
||||
if (handlerSendStatResult != null)
|
||||
{
|
||||
handler001(statpack);
|
||||
handlerSendStatResult(statpack);
|
||||
}
|
||||
resetvalues();
|
||||
m_report.Enabled = true;
|
||||
|
||||
Reference in New Issue
Block a user