Rationalize MonoTODO
authorMiguel de Icaza <miguel@gnome.org>
Thu, 30 Nov 2006 00:31:29 +0000 (00:31 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Thu, 30 Nov 2006 00:31:29 +0000 (00:31 -0000)
svn path=/trunk/mcs/; revision=68716

mcs/class/corlib/System.Diagnostics/Debugger.cs
mcs/class/corlib/System.Globalization/RegionInfo.cs
mcs/class/corlib/System.Runtime.InteropServices/SafeHandle.cs

index 39482c1523cd8220051b91ab324a9a8516ada292..2a548c221ca245877c22c5847e362e25df2e5aeb 100644 (file)
@@ -63,7 +63,7 @@ namespace System.Diagnostics
                /// <summary>
                /// Causes a breakpoint to be signaled to an attached debugger.
                /// </summary>
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public static void Break()
                {
                        throw new NotImplementedException();
index e34af971ea716c39c686d818049ef989272f199c..c6867951e43ce37c6f4ea4a72eb3ce96a9fb202a 100644 (file)
@@ -126,7 +126,6 @@ namespace System.Globalization
                }
 
 #if NET_2_0
-               [MonoTODO]
                [System.Runtime.InteropServices.ComVisible(false)]
                public virtual string NativeName {
                        get { return DisplayName; }
index 62ebf95ea4cdf560ce1ab2f34bdddfe9cf55eccf..3efec0fa14fd5a2b6da4dbf6f8246dc436015f1d 100644 (file)
@@ -30,59 +30,59 @@ using System.Runtime.ConstrainedExecution;
 
 namespace System.Runtime.InteropServices
 {
-       [MonoTODO]
+       [MonoTODO("Not implemented")]
        public abstract class SafeHandle : CriticalFinalizerObject, IDisposable {
                protected IntPtr handle;
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                protected SafeHandle (IntPtr invalidHandleValue, bool ownsHandle)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public void Close () {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public void DangerousAddRef (ref bool success) {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public IntPtr DangerousGetHandle () {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public void DangerousRelease () {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public virtual void Dispose () {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public void SetHandleAsInvalid () {
                        throw new NotImplementedException ();
                }
                
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                protected virtual void Dispose (bool disposing) {
                        throw new NotImplementedException ();
                }
 
                protected abstract bool ReleaseHandle ();
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                protected void SetHandle (IntPtr handle) {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public bool IsClosed {
                        get {
                                throw new NotImplementedException ();