diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs b/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs index 2f6d916..93f29d7 100644 --- a/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs +++ b/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler | |||
60 | TypeBuilder classBuilder = modBuilder.DefineType(ClassID, TypeAttributes.Class | TypeAttributes.Public); | 60 | TypeBuilder classBuilder = modBuilder.DefineType(ClassID, TypeAttributes.Class | TypeAttributes.Public); |
61 | 61 | ||
62 | // The default constructor | 62 | // The default constructor |
63 | ConstructorBuilder ctorBuilder = classBuilder.DefineDefaultConstructor(MethodAttributes.Public); | 63 | //ConstructorBuilder ctorBuilder = classBuilder.DefineDefaultConstructor(MethodAttributes.Public); |
64 | 64 | ||
65 | 65 | ||
66 | Type[] paramsTypeArray = new Type[] {typeof (System.ParamArrayAttribute)}; | 66 | Type[] paramsTypeArray = new Type[] {typeof (System.ParamArrayAttribute)}; |
@@ -81,9 +81,9 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler | |||
81 | //ilgen.Emit(OpCodes.Ldelem_Ref); | 81 | //ilgen.Emit(OpCodes.Ldelem_Ref); |
82 | //ilgen.MarkSequencePoint(doc, 6, 1, 6, 100); | 82 | //ilgen.MarkSequencePoint(doc, 6, 1, 6, 100); |
83 | 83 | ||
84 | MethodInfo ExecuteFunction = typeof(ScriptAssemblies.IScript).GetMethod( | 84 | //MethodInfo ExecuteFunction = typeof(ScriptAssemblies.IScript).GetMethod( |
85 | "ExecuteFunction", | 85 | // "ExecuteFunction", |
86 | executeFunctionTypeArray); | 86 | // executeFunctionTypeArray); |
87 | 87 | ||
88 | ilgen.DeclareLocal(typeof(string)); | 88 | ilgen.DeclareLocal(typeof(string)); |
89 | ilgen.Emit(OpCodes.Nop); | 89 | ilgen.Emit(OpCodes.Nop); |
@@ -234,7 +234,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler | |||
234 | File.Delete(toFile); | 234 | File.Delete(toFile); |
235 | File.Move(asmFileName, toFile); | 235 | File.Move(asmFileName, toFile); |
236 | 236 | ||
237 | string a = ""; | 237 | //string a = ""; |
238 | } | 238 | } |
239 | } | 239 | } |
240 | } \ No newline at end of file | 240 | } \ No newline at end of file |