Add a UUID param to NoEvents in PollServiceEventArgs to make it more generic

This commit is contained in:
Melanie
2009-09-21 14:59:31 +01:00
parent 2a1b5e3540
commit 04170521f0
5 changed files with 8 additions and 8 deletions

View File

@@ -393,12 +393,12 @@ namespace OpenSim.Framework.Console
lock (m_Connections)
{
if (!m_Connections.ContainsKey(sessionID))
return NoEvents();
return NoEvents(UUID.Zero);
c = m_Connections[sessionID];
}
c.last = System.Environment.TickCount;
if (c.lastLineSeen >= m_LineNumber)
return NoEvents();
return NoEvents(UUID.Zero);
Hashtable result = new Hashtable();
@@ -440,7 +440,7 @@ namespace OpenSim.Framework.Console
return result;
}
private Hashtable NoEvents()
private Hashtable NoEvents(UUID id)
{
Hashtable result = new Hashtable();