generator: Remove unused field in Constant class
This commit is contained in:
parent
57938c321e
commit
46068e7add
1 changed files with 0 additions and 2 deletions
|
@ -25,14 +25,12 @@ namespace GtkSharp.Generation
|
||||||
{
|
{
|
||||||
public class Constant
|
public class Constant
|
||||||
{
|
{
|
||||||
private readonly XmlElement elem;
|
|
||||||
private readonly string name;
|
private readonly string name;
|
||||||
private readonly string value;
|
private readonly string value;
|
||||||
private readonly string ctype;
|
private readonly string ctype;
|
||||||
|
|
||||||
public Constant (XmlElement elem)
|
public Constant (XmlElement elem)
|
||||||
{
|
{
|
||||||
this.elem = elem;
|
|
||||||
this.name = elem.GetAttribute ("name");
|
this.name = elem.GetAttribute ("name");
|
||||||
this.value = elem.GetAttribute ("value");
|
this.value = elem.GetAttribute ("value");
|
||||||
this.ctype = elem.GetAttribute ("ctype");
|
this.ctype = elem.GetAttribute ("ctype");
|
||||||
|
|
Loading…
Reference in a new issue