Change access-level of Run() from public to internal

This commit is contained in:
Andrew Schwartzmeyer 2015-12-22 11:51:26 -08:00
parent 290d29a6bb
commit a2270ceb2d

View file

@ -405,7 +405,7 @@ namespace Microsoft.PowerShell.Linux.Host
/// reads a command from the user, executes it and repeats until the ShouldExit
/// flag is set.
/// </summary>
public void Run()
internal void Run()
{
// Set up the control-C handler.
Console.CancelKeyPress += new ConsoleCancelEventHandler(this.HandleControlC);