瀏覽代碼

2002-02-12 Nick Drochak <[email protected]>

	* PathTooLongException.cs: put it in the correct namespace
	* EndOfStreamException.cs: put it in the correct namespace

svn path=/trunk/mcs/; revision=2351
Nick Drochak 24 年之前
父節點
當前提交
c0c49cbbd6

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

@@ -1,6 +1,7 @@
 2002-02-12  Nick Drochak  <[email protected]>
 
 	* PathTooLongException.cs: put it in the correct namespace
+	* EndOfStreamException.cs: put it in the correct namespace
 
 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <[email protected]>
 

+ 2 - 2
mcs/class/corlib/System.IO/EndOfStreamException.cs

@@ -1,5 +1,5 @@
 //	
-// System.EndOfStreamException.cs
+// System.IO.EndOfStreamException.cs
 //
 // Author:
 //	Duncan Mak ([email protected])
@@ -11,7 +11,7 @@ using System;
 using System.Globalization;
 using System.Runtime.Serialization;
 
-namespace System
+namespace System.IO
 {
 	   [Serializable]
 	   public class EndOfStreamException : SystemException

+ 1 - 1
mcs/class/corlib/System.IO/PathTooLongException.cs

@@ -1,5 +1,5 @@
 //	
-// System.PathTooLongException.cs
+// System.IO.PathTooLongException.cs
 //
 // Author:
 //	Duncan Mak ([email protected])