Comment out unused private methods.

This commit is contained in:
Jeff Ames
2008-03-25 03:49:08 +00:00
parent a8d9a58dd2
commit 9d1b42c39a
22 changed files with 539 additions and 518 deletions

View File

@@ -790,25 +790,26 @@ namespace OpenSim.Region.Environment.Scenes
}
//Updates the time in the viewer.
private void UpdateInWorldTime()
{
m_timeUpdateCount++;
if (m_timeUpdateCount > 600)
{
List<ScenePresence> avatars = GetAvatars();
foreach (ScenePresence avatar in avatars)
{
avatar.ControllingClient.SendViewerTime(m_timePhase);
}
// TODO: unused
// private void UpdateInWorldTime()
// {
// m_timeUpdateCount++;
// if (m_timeUpdateCount > 600)
// {
// List<ScenePresence> avatars = GetAvatars();
// foreach (ScenePresence avatar in avatars)
// {
// avatar.ControllingClient.SendViewerTime(m_timePhase);
// }
m_timeUpdateCount = 0;
m_timePhase++;
if (m_timePhase > 94)
{
m_timePhase = 0;
}
}
}
// m_timeUpdateCount = 0;
// m_timePhase++;
// if (m_timePhase > 94)
// {
// m_timePhase = 0;
// }
// }
// }
private void SendSimStatsPackets(SimStatsPacket pack)
{