diff --git a/generator/Constant.cs b/generator/Constant.cs index f06e4867f..3a40c0270 100644 --- a/generator/Constant.cs +++ b/generator/Constant.cs @@ -25,14 +25,12 @@ namespace GtkSharp.Generation { public class Constant { - private readonly XmlElement elem; private readonly string name; private readonly string value; private readonly string ctype; public Constant (XmlElement elem) { - this.elem = elem; this.name = elem.GetAttribute ("name"); this.value = elem.GetAttribute ("value"); this.ctype = elem.GetAttribute ("ctype");