diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs index 72d0586..932f780 100644 --- a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs +++ b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs | |||
@@ -26,15 +26,15 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | namespace OpenSim.Framework.Communications.Limit | 28 | namespace OpenSim.Framework.Communications.Limit |
29 | { | 29 | { |
30 | /// <summary> | 30 | /// <summary> |
31 | /// Strategy which polices no limits | 31 | /// Strategy which polices no limits |
32 | /// </summary> | 32 | /// </summary> |
33 | public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId> | 33 | public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId> |
34 | { | 34 | { |
35 | public bool AllowRequest(TId id) { return true; } | 35 | public bool AllowRequest(TId id) { return true; } |
36 | public bool IsFirstRefusal(TId id) { return false; } | 36 | public bool IsFirstRefusal(TId id) { return false; } |
37 | public void MonitorRequests(TId id) { /* intentionally blank */ } | 37 | public void MonitorRequests(TId id) { /* intentionally blank */ } |
38 | public bool IsMonitoringRequests(TId id) { return false; } | 38 | public bool IsMonitoringRequests(TId id) { return false; } |
39 | } | 39 | } |
40 | } | 40 | } |