From 46068e7addccd6a2beb26e636476a0287da74d5d Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Thu, 10 Oct 2013 23:43:55 +0200 Subject: [PATCH] generator: Remove unused field in Constant class --- generator/Constant.cs | 2 -- 1 file changed, 2 deletions(-) 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");