diff options
author | UbitUmarov | 2015-09-02 19:54:53 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-02 19:54:53 +0100 |
commit | a11edceb00b5b86f825bd957bdac9edb91f893dd (patch) | |
tree | c192eae26f3aadf365a66f32fc6d9ade2f0a0c61 /OpenSim/Services/Base | |
parent | bad merge? (diff) | |
download | opensim-SC-a11edceb00b5b86f825bd957bdac9edb91f893dd.zip opensim-SC-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.gz opensim-SC-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.bz2 opensim-SC-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.xz |
seems to compile ( tests comented out)
Diffstat (limited to 'OpenSim/Services/Base')
-rw-r--r-- | OpenSim/Services/Base/ServiceBase.cs | 7 |
1 files changed, 1 insertions, 6 deletions
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 | |||
47 | 47 | ||
48 | public T LoadPlugin<T>(string dllName, Object[] args) where T:class | 48 | public T LoadPlugin<T>(string dllName, Object[] args) where T:class |
49 | { | 49 | { |
50 | <<<<<<< HEAD | ||
51 | // The path:type separator : is unfortunate because it collides | 50 | // The path:type separator : is unfortunate because it collides |
52 | // with Windows paths like C:\... | 51 | // with Windows paths like C:\... |
53 | // When the path provided includes the drive, this fails. | 52 | // When the path provided includes the drive, this fails. |
@@ -55,11 +54,7 @@ namespace OpenSim.Services.Base | |||
55 | string pathRoot = Path.GetPathRoot(dllName); | 54 | string pathRoot = Path.GetPathRoot(dllName); |
56 | string noRoot = dllName.Substring(pathRoot.Length); | 55 | string noRoot = dllName.Substring(pathRoot.Length); |
57 | string[] parts = noRoot.Split(new char[] {':'}); | 56 | string[] parts = noRoot.Split(new char[] {':'}); |
58 | ======= | 57 | |
59 | string pathRoot = Path.GetPathRoot(dllName); | ||
60 | string noRoot = dllName.Substring(pathRoot.Length); | ||
61 | string[] parts = noRoot.Split(new char[] { ':' }); | ||
62 | >>>>>>> avn/ubitvar | ||
63 | 58 | ||
64 | dllName = pathRoot + parts[0]; | 59 | dllName = pathRoot + parts[0]; |
65 | 60 | ||