From 1352a198386ef9e18c5c8b52bb6032f3264432f4 Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Wed, 6 May 2009 20:02:49 +0000 Subject: refactoring Scene.NewUserConnection() to be simpler and clearer. --- OpenSim/Tests/Common/Mock/TestScene.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'OpenSim/Tests/Common/Mock') diff --git a/OpenSim/Tests/Common/Mock/TestScene.cs b/OpenSim/Tests/Common/Mock/TestScene.cs index 0be98a2..670ba61 100644 --- a/OpenSim/Tests/Common/Mock/TestScene.cs +++ b/OpenSim/Tests/Common/Mock/TestScene.cs @@ -25,6 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +using System; using Nini.Config; using OpenSim.Framework; using OpenSim.Framework.Communications; @@ -55,8 +56,9 @@ namespace OpenSim.Tests.Common.Mock /// /// /// - public override bool AuthenticateUser(AgentCircuitData agent) + public override bool AuthenticateUser(AgentCircuitData agent, out string reason) { + reason = String.Empty; return true; } -- cgit v1.1