mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:49:51 +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;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user