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:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-02-12 13:50:58 +0300
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-02-12 13:50:58 +0300
commitc0c49cbbd61d48e324bddf2efca0c08690283d68 (patch)
tree6cb3cb2548b03abe7800e54680ad840e318f7ba3
parent2455d23ba19fd278d4963c711f6daa2e6590a2bf (diff)
2002-02-12 Nick Drochak <ndrochak@gol.com>
* PathTooLongException.cs: put it in the correct namespace * EndOfStreamException.cs: put it in the correct namespace svn path=/trunk/mcs/; revision=2351
-rw-r--r--mcs/class/corlib/System.IO/ChangeLog1
-rw-r--r--mcs/class/corlib/System.IO/EndOfStreamException.cs4
-rw-r--r--mcs/class/corlib/System.IO/PathTooLongException.cs2
3 files changed, 4 insertions, 3 deletions
diff --git a/mcs/class/corlib/System.IO/ChangeLog b/mcs/class/corlib/System.IO/ChangeLog
index 42f035c10b4..59d0bcf8285 100644
--- a/mcs/class/corlib/System.IO/ChangeLog
+++ b/mcs/class/corlib/System.IO/ChangeLog
@@ -1,6 +1,7 @@
2002-02-12 Nick Drochak <ndrochak@gol.com>
* 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 <lupus@ximian.com>
diff --git a/mcs/class/corlib/System.IO/EndOfStreamException.cs b/mcs/class/corlib/System.IO/EndOfStreamException.cs
index 4a6d61c491a..3e3292865cb 100644
--- a/mcs/class/corlib/System.IO/EndOfStreamException.cs
+++ b/mcs/class/corlib/System.IO/EndOfStreamException.cs
@@ -1,5 +1,5 @@
//
-// System.EndOfStreamException.cs
+// System.IO.EndOfStreamException.cs
//
// Author:
// Duncan Mak (duncan@ximian.com)
@@ -11,7 +11,7 @@ using System;
using System.Globalization;
using System.Runtime.Serialization;
-namespace System
+namespace System.IO
{
[Serializable]
public class EndOfStreamException : SystemException
diff --git a/mcs/class/corlib/System.IO/PathTooLongException.cs b/mcs/class/corlib/System.IO/PathTooLongException.cs
index d6e5897f6f5..80fa3b32672 100644
--- a/mcs/class/corlib/System.IO/PathTooLongException.cs
+++ b/mcs/class/corlib/System.IO/PathTooLongException.cs
@@ -1,5 +1,5 @@
//
-// System.PathTooLongException.cs
+// System.IO.PathTooLongException.cs
//
// Author:
// Duncan Mak (duncan@ximian.com)