ssg: WizardPanelStaticSiteInitial,Paths: remove unused methods

This commit is contained in:
Nick Vella 2019-07-04 21:01:05 +10:00
parent 9d5946fb0a
commit 5c71216067
2 changed files with 0 additions and 42 deletions

View File

@ -76,33 +76,12 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
get { return ConfigPanelId.StaticSiteConfig; }
}
public override bool ShowProxySettingsLink
{
get { return false; }
}
public IBlogProviderAccountWizardDescription ProviderAccountWizard
{
set { }
}
public string AccountId
{
set { }
}
public string LocalSitePath
{
get => PathHelper.RemoveLeadingAndTrailingSlash(textBoxLocalSitePath.Text);
set { textBoxLocalSitePath.Text = value; }
}
public bool IsDirty(TemporaryBlogSettings settings)
{
return false; // TODO
}
public override bool ValidatePanel()
{
if (!Directory.Exists(LocalSitePath))

View File

@ -90,21 +90,6 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
get { return ConfigPanelId.StaticSiteConfig; }
}
public override bool ShowProxySettingsLink
{
get { return false; }
}
public IBlogProviderAccountWizardDescription ProviderAccountWizard
{
set { }
}
public string AccountId
{
set { }
}
public string SiteUrl
{
get => PathHelper.RemoveLeadingAndTrailingSlash(textBoxSiteUrl.Text);
@ -147,12 +132,6 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
set { checkBoxPagesInRoot.Checked = value; }
}
public bool IsDirty(TemporaryBlogSettings settings)
{
return false; // TODO
}
public override bool ValidatePanel()
{
var postsPathFull = $"{_localSitePath}\\{PostsPath}";