2007-11-05 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Mon, 5 Nov 2007 16:38:21 +0000 (16:38 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Mon, 5 Nov 2007 16:38:21 +0000 (16:38 -0000)
* DebuggableAttribute.cs: Don't throw on DebuggingFlags property.
Fix part of #322850.

svn path=/trunk/mcs/; revision=88885

mcs/class/corlib/System.Diagnostics/ChangeLog
mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs

index 44dba47ef42e772319e8b07631d015ffdbab1421..c55f76671449719bbc5320b9d21348273fd0dc53 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-05  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * DebuggableAttribute.cs: Don't throw on DebuggingFlags property.
+       Fix part of #322850.
+
 2007-05-16  Dick Porter  <dick@ximian.com>
 
        * ConditionalAttribute.cs: 
index 3d2299353e9ed5860e1ff9ccc7b2e243b93c9138..aabba097f6c9d8f7ccff7293975017e6f135304e 100644 (file)
@@ -59,11 +59,8 @@ namespace System.Diagnostics {
 
                private DebuggingModes debuggingModes = DebuggingModes.None;
 
-               public DebuggingModes DebuggingFlags 
-               {
-                       get {
-                               throw new NotImplementedException ();
-                       }
+               public DebuggingModes DebuggingFlags {
+                       get { return debuggingModes; }
                }
 #endif