From a11edceb00b5b86f825bd957bdac9edb91f893dd Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 2 Sep 2015 19:54:53 +0100 Subject: seems to compile ( tests comented out) --- OpenSim/Services/Base/ServiceBase.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'OpenSim/Services/Base') diff --git a/OpenSim/Services/Base/ServiceBase.cs b/OpenSim/Services/Base/ServiceBase.cs index 09dcbef..c18226b 100644 --- a/OpenSim/Services/Base/ServiceBase.cs +++ b/OpenSim/Services/Base/ServiceBase.cs @@ -47,7 +47,6 @@ namespace OpenSim.Services.Base public T LoadPlugin(string dllName, Object[] args) where T:class { -<<<<<<< HEAD // The path:type separator : is unfortunate because it collides // with Windows paths like C:\... // When the path provided includes the drive, this fails. @@ -55,11 +54,7 @@ namespace OpenSim.Services.Base string pathRoot = Path.GetPathRoot(dllName); string noRoot = dllName.Substring(pathRoot.Length); string[] parts = noRoot.Split(new char[] {':'}); -======= - string pathRoot = Path.GetPathRoot(dllName); - string noRoot = dllName.Substring(pathRoot.Length); - string[] parts = noRoot.Split(new char[] { ':' }); ->>>>>>> avn/ubitvar + dllName = pathRoot + parts[0]; -- cgit v1.1