mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
minor: remove mono compiler warnings
This commit is contained in:
@@ -34,10 +34,10 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL
|
||||
{
|
||||
public class Commands_OSSL : IScriptEngineComponent
|
||||
{
|
||||
private RegionInfoStructure CurrentRegion;
|
||||
//private RegionInfoStructure CurrentRegion;
|
||||
public void Initialize(RegionInfoStructure currentRegion)
|
||||
{
|
||||
CurrentRegion = currentRegion;
|
||||
//CurrentRegion = currentRegion;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Compilers
|
||||
|
||||
CompilerParameters parameters = new CompilerParameters();
|
||||
parameters.IncludeDebugInformation = true;
|
||||
string rootPath = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory);
|
||||
//string rootPath = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory);
|
||||
|
||||
foreach (string file in AppDomainAssemblies)
|
||||
{
|
||||
|
||||
@@ -60,7 +60,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
TypeBuilder classBuilder = modBuilder.DefineType(ClassID, TypeAttributes.Class | TypeAttributes.Public);
|
||||
|
||||
// The default constructor
|
||||
ConstructorBuilder ctorBuilder = classBuilder.DefineDefaultConstructor(MethodAttributes.Public);
|
||||
//ConstructorBuilder ctorBuilder = classBuilder.DefineDefaultConstructor(MethodAttributes.Public);
|
||||
|
||||
|
||||
Type[] paramsTypeArray = new Type[] {typeof (System.ParamArrayAttribute)};
|
||||
@@ -81,9 +81,9 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
//ilgen.Emit(OpCodes.Ldelem_Ref);
|
||||
//ilgen.MarkSequencePoint(doc, 6, 1, 6, 100);
|
||||
|
||||
MethodInfo ExecuteFunction = typeof(ScriptAssemblies.IScript).GetMethod(
|
||||
"ExecuteFunction",
|
||||
executeFunctionTypeArray);
|
||||
//MethodInfo ExecuteFunction = typeof(ScriptAssemblies.IScript).GetMethod(
|
||||
// "ExecuteFunction",
|
||||
// executeFunctionTypeArray);
|
||||
|
||||
ilgen.DeclareLocal(typeof(string));
|
||||
ilgen.Emit(OpCodes.Nop);
|
||||
@@ -234,7 +234,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
File.Delete(toFile);
|
||||
File.Move(asmFileName, toFile);
|
||||
|
||||
string a = "";
|
||||
//string a = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -142,10 +142,10 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
return;
|
||||
}
|
||||
|
||||
UUID assetID = UUID.Zero;
|
||||
//UUID assetID = UUID.Zero;
|
||||
TaskInventoryItem taskInventoryItem = new TaskInventoryItem();
|
||||
if (m_host.TaskInventory.TryGetValue(ScriptObject.Script.ItemID, out taskInventoryItem))
|
||||
assetID = taskInventoryItem.AssetID;
|
||||
//if (m_host.TaskInventory.TryGetValue(ScriptObject.Script.ItemID, out taskInventoryItem))
|
||||
// assetID = taskInventoryItem.AssetID;
|
||||
|
||||
ScenePresence presence =
|
||||
ScriptObject.Script.RegionInfo.Scene.GetScenePresence(taskInventoryItem.OwnerID);
|
||||
@@ -168,7 +168,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
{
|
||||
IScriptCompiler compiler =
|
||||
ScriptObject.Script.RegionInfo.FindCompiler(ScriptObject.Script.ScriptMetaData);
|
||||
RegionInfoStructure currentRegionInfo = ScriptObject.Script.RegionInfo;
|
||||
//RegionInfoStructure currentRegionInfo = ScriptObject.Script.RegionInfo;
|
||||
fileName = compiler.Compile(ScriptObject.Script.ScriptMetaData,
|
||||
ref ScriptObject.Script.Source);
|
||||
ScriptObject.Script.AssemblyFileName = fileName;
|
||||
@@ -263,7 +263,7 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler
|
||||
// Tell script not to accept new requests
|
||||
ss.Running = false;
|
||||
ss.Disabled = true;
|
||||
AppDomain ad = ss.AppDomain;
|
||||
//AppDomain ad = ss.AppDomain;
|
||||
|
||||
// Remove from internal structure
|
||||
MemRemoveScript(localID, itemID);
|
||||
|
||||
Reference in New Issue
Block a user