mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Fix build break in last revision. Thanks to paulieFemto for pointing it out.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user