* Fix build break in last revision. Thanks to paulieFemto for pointing it out.

0.6.0-stable
Justin Clarke Casey 2008-03-24 18:45:21 +00:00
parent 185dbb06af
commit ca7c954a61
1 changed files with 4 additions and 4 deletions

View File

@ -34,9 +34,9 @@ namespace OpenSim.Framework.Communications.Limit
/// </summary>
public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId>
{
bool AllowRequest(TId id) { return true; }
bool IsFirstRefusal(TId id) { return false; }
void MonitorRequests(TId id) { /* intentionally blank */ }
bool IsMonitoringRequests(TId id) { return false; }
public bool AllowRequest(TId id) { return true; }
public bool IsFirstRefusal(TId id) { return false; }
public void MonitorRequests(TId id) { /* intentionally blank */ }
public bool IsMonitoringRequests(TId id) { return false; }
}
}