* Fix build break in last revision. Thanks to paulieFemto for pointing it out.
parent
185dbb06af
commit
ca7c954a61
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue