fix missing ";" in Streams.Clear

This commit is contained in:
James Truher 2016-08-24 12:14:39 -07:00
parent f6ae238641
commit 763fe2bdbf

View file

@ -95,15 +95,15 @@ namespace TestHost
public ArrayList Progress = new ArrayList(); public ArrayList Progress = new ArrayList();
public ArrayList Prompt = new ArrayList(); public ArrayList Prompt = new ArrayList();
public void Clear() { public void Clear() {
ConsoleOutput.Clear() ConsoleOutput.Clear();
Input.Clear() Input.Clear();
Error.Clear() Error.Clear();
Verbose.Clear() Verbose.Clear();
Debug.Clear() Debug.Clear();
Warning.Clear() Warning.Clear();
Information.Clear() Information.Clear();
Progress.Clear() Progress.Clear();
Prompt.Clear() Prompt.Clear();
} }
} }
public class TestPSHostUserInterface : PSHostUserInterface public class TestPSHostUserInterface : PSHostUserInterface