importing messaging-2008 branch to trunk, going on.
[mono.git] / mcs / nunit20 / util / ConsoleWriter.cs
old mode 100755 (executable)
new mode 100644 (file)
index 6b0d432..70300c3
@@ -1,8 +1,8 @@
 #region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
 /************************************************************************************
 '
-' Copyright © 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
-' Copyright © 2000-2003 Philip A. Craig
+' Copyright Â© 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' Copyright Â© 2000-2003 Philip A. Craig
 '
 ' This software is provided 'as-is', without any express or implied warranty. In no 
 ' event will the authors be held liable for any damages arising from the use of this 
@@ -16,8 +16,8 @@
 ' you wrote the original software. If you use this software in a product, an 
 ' acknowledgment (see the following) in the product documentation is required.
 '
-' Portions Copyright © 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
-' or Copyright © 2000-2003 Philip A. Craig
+' Portions Copyright Â© 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' or Copyright Â© 2000-2003 Philip A. Craig
 '
 ' 2. Altered source versions must be plainly marked as such, and must not be 
 ' misrepresented as being the original software.
@@ -44,7 +44,12 @@ namespace NUnit.Util
                {
                        this.console = console;
                }
-                       
+
+               public override void Flush()
+               {
+                       console.Flush();
+               }
+
                public override void Write(char c)
                {
                        console.Write(c);