mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Comment out unused private methods.
This commit is contained in:
@@ -34,18 +34,19 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO
|
||||
{
|
||||
internal partial class LSO_Parser
|
||||
{
|
||||
private static TypeBuilder CreateType(ModuleBuilder modBuilder, string typeName)
|
||||
{
|
||||
TypeBuilder typeBuilder = modBuilder.DefineType(typeName,
|
||||
TypeAttributes.Public |
|
||||
TypeAttributes.Class |
|
||||
TypeAttributes.AutoClass |
|
||||
TypeAttributes.AnsiClass |
|
||||
TypeAttributes.BeforeFieldInit |
|
||||
TypeAttributes.AutoLayout,
|
||||
typeof (object),
|
||||
new Type[] {typeof (object)});
|
||||
return typeBuilder;
|
||||
}
|
||||
// TODO: unused:
|
||||
// private static TypeBuilder CreateType(ModuleBuilder modBuilder, string typeName)
|
||||
// {
|
||||
// TypeBuilder typeBuilder = modBuilder.DefineType(typeName,
|
||||
// TypeAttributes.Public |
|
||||
// TypeAttributes.Class |
|
||||
// TypeAttributes.AutoClass |
|
||||
// TypeAttributes.AnsiClass |
|
||||
// TypeAttributes.BeforeFieldInit |
|
||||
// TypeAttributes.AutoLayout,
|
||||
// typeof (object),
|
||||
// new Type[] {typeof (object)});
|
||||
// return typeBuilder;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -342,10 +342,11 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO
|
||||
return false;
|
||||
}
|
||||
|
||||
private void IL_PopToStack(ILGenerator il)
|
||||
{
|
||||
IL_PopToStack(il, 1);
|
||||
}
|
||||
// TODO: unused
|
||||
// private void IL_PopToStack(ILGenerator il)
|
||||
// {
|
||||
// IL_PopToStack(il, 1);
|
||||
// }
|
||||
|
||||
private void IL_PopToStack(ILGenerator il, int count)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user