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
path: root/mcs
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2004-06-17 23:01:55 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-17 23:01:55 +0400
commit1618604541f3c0e331585494e157d6cdb9b7f003 (patch)
treec3611f0ae8e0f095f5fd78b29d13f12119d9c53e /mcs
parent6fd8b1207676621287d528db55fcc8bfb2d81fcf (diff)
* ReturnMessage.cs: remove serializable attribute to match MS.NET
svn path=/trunk/mcs/; revision=29805
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog4
-rw-r--r--mcs/class/corlib/System.Runtime.Remoting.Messaging/ReturnMessage.cs5
2 files changed, 6 insertions, 3 deletions
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog
index 74c568dae60..683f825eeec 100644
--- a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog
+++ b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-17 Gert Driesen <drieseng@users.sourceforge.net>
+
+ * ReturnMessage.cs: remove serializable attribute to match MS.NET
+
2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
* MethodResponse.cs: Only get the MethodBase from type and method name when
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ReturnMessage.cs b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ReturnMessage.cs
index a0380601b5b..9ccc944071f 100644
--- a/mcs/class/corlib/System.Runtime.Remoting.Messaging/ReturnMessage.cs
+++ b/mcs/class/corlib/System.Runtime.Remoting.Messaging/ReturnMessage.cs
@@ -35,9 +35,8 @@ using System.Collections;
using System.Reflection;
using System.IO;
-namespace System.Runtime.Remoting.Messaging {
-
- [Serializable]
+namespace System.Runtime.Remoting.Messaging
+{
public class ReturnMessage : IMethodReturnMessage, IMethodMessage, IInternalMessage
{
object[] _outArgs;