From d195584f5dcaa9d37dfa9c2df05082cc0b415f46 Mon Sep 17 00:00:00 2001 From: Mohammad Hadi Hosseinpour Date: Fri, 7 Apr 2017 05:59:09 +0430 Subject: [PATCH] Remove Unused Struct "Property" I'm so sorry, I forgot to remove the unused struct in previous commit. --- TeleSharp.Generator/Program.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/TeleSharp.Generator/Program.cs b/TeleSharp.Generator/Program.cs index 9f0444e..f279e67 100644 --- a/TeleSharp.Generator/Program.cs +++ b/TeleSharp.Generator/Program.cs @@ -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; - } - } - }