From ca7c954a61aab9def435d668956fea3f035c224a Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 24 Mar 2008 18:45:21 +0000 Subject: [PATCH] * Fix build break in last revision. Thanks to paulieFemto for pointing it out. --- .../Framework/Communications/Limit/NullLimitStrategy.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs index a5574f2544..43b77a77d1 100644 --- a/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs +++ b/OpenSim/Framework/Communications/Limit/NullLimitStrategy.cs @@ -34,9 +34,9 @@ namespace OpenSim.Framework.Communications.Limit /// public class NullLimitStrategy : IRequestLimitStrategy { - 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; } } }