Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Toshok <toshok@novell.com>2006-08-14 19:58:12 +0400
committerChris Toshok <toshok@novell.com>2006-08-14 19:58:12 +0400
commit74a14e20f598cbd94fbeb4e5e8a146319504cccd (patch)
tree5c240f16fb91fc1e603d737615241e7fbf638e83 /mcs/class/System/System.IO.Ports/SerialPort.cs
parentbeae7faea1cdd5bef97ca6a54180a72b7de8d7fc (diff)
remove writeline
svn path=/trunk/mcs/; revision=63727
Diffstat (limited to 'mcs/class/System/System.IO.Ports/SerialPort.cs')
-rw-r--r--mcs/class/System/System.IO.Ports/SerialPort.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mcs/class/System/System.IO.Ports/SerialPort.cs b/mcs/class/System/System.IO.Ports/SerialPort.cs
index 8a83db66ed1..9b877279689 100644
--- a/mcs/class/System/System.IO.Ports/SerialPort.cs
+++ b/mcs/class/System/System.IO.Ports/SerialPort.cs
@@ -462,7 +462,6 @@ namespace System.IO.Ports
List<string> serial_ports = new List<string> ();
foreach (string dev in ttys){
- Console.WriteLine (dev);
if (dev.StartsWith ("/dev/ttyS") || dev.StartsWith ("/dev/ttyUSB"))
serial_ports.Add (dev);