diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs index a5574f2..43b77a7 100644 --- a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs +++ b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs | |||
@@ -34,9 +34,9 @@ namespace OpenSim.Framework.Communications.Limit | |||
34 | /// </summary> | 34 | /// </summary> |
35 | public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId> | 35 | public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId> |
36 | { | 36 | { |
37 | bool AllowRequest(TId id) { return true; } | 37 | public bool AllowRequest(TId id) { return true; } |
38 | bool IsFirstRefusal(TId id) { return false; } | 38 | public bool IsFirstRefusal(TId id) { return false; } |
39 | void MonitorRequests(TId id) { /* intentionally blank */ } | 39 | public void MonitorRequests(TId id) { /* intentionally blank */ } |
40 | bool IsMonitoringRequests(TId id) { return false; } | 40 | public bool IsMonitoringRequests(TId id) { return false; } |
41 | } | 41 | } |
42 | } | 42 | } |