mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Remove Unused Struct "Property"
I'm so sorry, I forgot to remove the unused struct in previous commit.
This commit is contained in:
parent
8055ab3162
commit
d195584f5d
|
|
@ -642,23 +642,4 @@ namespace TeleSharp.Generator
|
|||
return File.OpenWrite(path);
|
||||
}
|
||||
}
|
||||
|
||||
struct Property
|
||||
{
|
||||
public Property(string type, string name){
|
||||
Type = type;
|
||||
Name = name;
|
||||
}
|
||||
public string Type;
|
||||
public string Name;
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
if (obj.GetType() == typeof (Property))
|
||||
{
|
||||
return ((Property) obj).Type == Type && ((Property)obj).Name == Name;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue