This was only for debugging.
authorMartin Baulig <martin@novell.com>
Sun, 13 Jun 2004 02:17:36 +0000 (02:17 -0000)
committerMartin Baulig <martin@novell.com>
Sun, 13 Jun 2004 02:17:36 +0000 (02:17 -0000)
svn path=/trunk/mcs/; revision=29434

mcs/gmcs/decl.cs

index cf34162aa88ff47936fe36247e23688eb143461c..8f8a7781478a5c950741000424bf1e7a635f90a1 100755 (executable)
@@ -20,7 +20,7 @@ using System.Reflection;
 
 namespace Mono.CSharp {
 
-       public class MemberName : ICloneable {
+       public class MemberName {
                public readonly string Name;
                public readonly TypeArguments TypeArguments;
 
@@ -123,19 +123,6 @@ namespace Mono.CSharp {
                        }
                }
 
-               public MemberName Clone ()
-               {
-                       if (Left != null)
-                               return new MemberName (Left.Clone (), this);
-                       else
-                               return new MemberName (Name, TypeArguments);
-               }
-
-               object ICloneable.Clone ()
-               {
-                       return Clone ();
-               }
-
                public override string ToString ()
                {
                        string full_name;