Skip to content

Commit

Permalink
Removed superfluous references to devSite
Browse files Browse the repository at this point in the history
  • Loading branch information
richardprice committed Nov 6, 2012
1 parent 8c8d93e commit e8f645f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Kudu.SiteManagement/Site.cs
Expand Up @@ -18,6 +18,5 @@ public string SiteUrl
}
}
public IList<string> SiteUrls { get; set; }
public string DevSiteUrl { get; set; }
}
}
1 change: 0 additions & 1 deletion Kudu.SiteManagement/SiteManager.cs
Expand Up @@ -60,7 +60,6 @@ public Site GetSite(string applicationName)

var site = new Site();
site.ServiceUrl = GetSiteUrl(serviceSite);
site.DevSiteUrl = GetSiteUrl(devSite);
site.SiteUrls = GetSiteUrls(mainSite);
return site;
}
Expand Down
1 change: 0 additions & 1 deletion Kudu.Web/Models/Application.cs
Expand Up @@ -20,6 +20,5 @@ public string SiteUrl
}
}
public IList<string> SiteUrls { get; set; }
public string DevSiteUrl { get; set; }
}
}
1 change: 0 additions & 1 deletion Kudu.Web/Models/ApplicationService.cs
Expand Up @@ -49,7 +49,6 @@ public IApplication GetApplication(string name)
{
Name = name,
SiteUrls = site.SiteUrls,
DevSiteUrl = site.DevSiteUrl,
ServiceUrl = site.ServiceUrl
};
}
Expand Down
1 change: 0 additions & 1 deletion Kudu.Web/Models/IApplication.cs
Expand Up @@ -9,6 +9,5 @@ public interface IApplication
string ServiceUrl { get; set; }
string SiteUrl { get; }
IList<string> SiteUrls { get; set; }
string DevSiteUrl { get; set; }
}
}

0 comments on commit e8f645f

Please sign in to comment.