* 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> /// </summary>
public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId> public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId>
{ {
bool AllowRequest(TId id) { return true; } public bool AllowRequest(TId id) { return true; }
bool IsFirstRefusal(TId id) { return false; } public bool IsFirstRefusal(TId id) { return false; }
void MonitorRequests(TId id) { /* intentionally blank */ } public void MonitorRequests(TId id) { /* intentionally blank */ }
bool IsMonitoringRequests(TId id) { return false; } public bool IsMonitoringRequests(TId id) { return false; }
} }
} }