diff options
author | Justin Clarke Casey | 2008-11-10 19:06:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-10 19:06:01 +0000 |
commit | 0f22013ae40e49412684903503005519144dc245 (patch) | |
tree | c8df0a1fec4c65cb3838bb88a8a7e90318276ffe /OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs | |
parent | * Extend basic scene test to retrieve the object from the scene and match uuids (diff) | |
download | opensim-SC-0f22013ae40e49412684903503005519144dc245.zip opensim-SC-0f22013ae40e49412684903503005519144dc245.tar.gz opensim-SC-0f22013ae40e49412684903503005519144dc245.tar.bz2 opensim-SC-0f22013ae40e49412684903503005519144dc245.tar.xz |
minor: remove mono compiler warnings
Diffstat (limited to 'OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/BaseClassFactory.cs')
-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 |