generator: Remove unused variable in FieldBase class

This commit is contained in:
Bertrand Lorentz 2013-10-10 23:44:24 +02:00
parent 46068e7add
commit 741360020c

View File

@ -161,7 +161,6 @@ namespace GtkSharp.Generation {
IGeneratable gen = table [CType];
StreamWriter sw = gen_info.Writer;
string modifiers = elem.GetAttributeAsBoolean ("new_flag") ? "new " : "";
bool is_struct = table.IsStruct (CType) || table.IsBoxed (CType);
sw.WriteLine (indent + "public " + modifiers + CSType + " " + Name + " {");