Просмотр исходного кода

* DriveInfo.cs: Removed debug code.

svn path=/trunk/mcs/; revision=97145
Gert Driesen 18 лет назад
Родитель
Сommit
698bcb03f7
2 измененных файлов с 4 добавлено и 3 удалено
  1. 4 0
      mcs/class/corlib/System.IO/ChangeLog
  2. 0 3
      mcs/class/corlib/System.IO/DriveInfo.cs

+ 4 - 0
mcs/class/corlib/System.IO/ChangeLog

@@ -1,3 +1,7 @@
+2008-03-02  Gert Driesen  <[email protected]>
+
+	* DriveInfo.cs: Removed debug code.
+
 2008-02-15  Miguel de Icaza  <[email protected]>
 
 	* UnmanagedMemoryStream.cs: Implement few missing pieces.

+ 0 - 3
mcs/class/corlib/System.IO/DriveInfo.cs

@@ -229,11 +229,8 @@ namespace System.IO {
 
 			try {
 				using (StreamReader linux_ostype = TryOpen ("/proc/sys/kernel/ostype")){
-					Console.WriteLine ("here {0}", linux_ostype);
 					if (linux_ostype != null){
 						string line = linux_ostype.ReadLine ();
-
-						Console.WriteLine ("L: {0}", line);
 						if (line == "Linux")
 							di = LinuxGetDrives ();
 					}