aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-24 18:45:21 +0000
committerJustin Clarke Casey2008-03-24 18:45:21 +0000
commitca7c954a61aab9def435d668956fea3f035c224a (patch)
tree74985564553f4eb1acf3ff63d115c98bcaeacfb3 /OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs
parent* Picky comment change (diff)
downloadopensim-SC_OLD-ca7c954a61aab9def435d668956fea3f035c224a.zip
opensim-SC_OLD-ca7c954a61aab9def435d668956fea3f035c224a.tar.gz
opensim-SC_OLD-ca7c954a61aab9def435d668956fea3f035c224a.tar.bz2
opensim-SC_OLD-ca7c954a61aab9def435d668956fea3f035c224a.tar.xz
* Fix build break in last revision. Thanks to paulieFemto for pointing it out.
Diffstat (limited to 'OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs')
-rw-r--r--OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs8
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}