summaryrefslogtreecommitdiff
path: root/StubGen/StubGen/Scrapers/ScrapedEnum.cs
diff options
context:
space:
mode:
Diffstat (limited to 'StubGen/StubGen/Scrapers/ScrapedEnum.cs')
-rw-r--r--StubGen/StubGen/Scrapers/ScrapedEnum.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/StubGen/StubGen/Scrapers/ScrapedEnum.cs b/StubGen/StubGen/Scrapers/ScrapedEnum.cs
index 8a0f98b7..d630fbcf 100644
--- a/StubGen/StubGen/Scrapers/ScrapedEnum.cs
+++ b/StubGen/StubGen/Scrapers/ScrapedEnum.cs
@@ -31,17 +31,6 @@ namespace StubGen
{
Description = node.SelectSingleNode("./div[@class='abstract']/p").RealInnerText();
Deprecated = Description.ToLower().Contains("deprecat");
- try
- {
- iOSVersion =
- double.Parse(
- node.SelectSingleNode("./div[@class='availability']/p").RealInnerText().Split("in iOS ")[1]
- .Split(' ')[0]);
- }
- catch
- {
- iOSVersion = null;
- }
if (Declaration.StartsWith("struct "))
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback