Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #146 from nunit/issue-86c
Browse files Browse the repository at this point in the history
Remove additional unused settings
  • Loading branch information
immeraufdemhund authored Dec 25, 2016
2 parents 170fb97 + 4512408 commit bcb2666
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 413 deletions.
21 changes: 0 additions & 21 deletions src/nunit-gui/Model/Settings/EngineSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,26 +57,5 @@ public bool ReloadOnRun
get { return GetSetting(reloadOnRunKey, false); }
set { SaveSetting(reloadOnRunKey, value); }
}

private const string shadowCopyFilesKey = "ShadowCopyFiles";
public bool ShadowCopyFiles
{
get { return GetSetting(shadowCopyFilesKey, true); }
set { SaveSetting(shadowCopyFilesKey, value); }
}

private const string setPrincipalPolicyKey = "SetPrincipalPolicy";
public bool SetPrincipalPolicy
{
get { return GetSetting(setPrincipalPolicyKey, false); }
set { SaveSetting(setPrincipalPolicyKey, value); }
}

private const string principalPolicyKey = "PrincipalPolicy";
public PrincipalPolicy PrincipalPolicy
{
get { return GetSetting(principalPolicyKey, PrincipalPolicy.UnauthenticatedPrincipal); }
set { SaveSetting(principalPolicyKey, value); }
}
}
}
3 changes: 1 addition & 2 deletions src/nunit-gui/Views/SettingsDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ public SettingsDialog(Form owner, SettingsModel settings)

_pageList.AddRange(new SettingsPage[] {
new GuiSettingsPage(_settings),
new AssemblyReloadSettingsPage(_settings),
new AdvancedEngineSettingsPage(_settings)
new AssemblyReloadSettingsPage(_settings)
});
_owner = owner;
}
Expand Down

This file was deleted.

86 changes: 0 additions & 86 deletions src/nunit-gui/Views/SettingsPages/AdvancedEngineSettingsPage.cs

This file was deleted.

Loading

0 comments on commit bcb2666

Please sign in to comment.