* 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>
|
/// </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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue