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:
Diffstat (limited to 'mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs b/mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs
deleted file mode 100644
index 08ede85557c..00000000000
--- a/mcs/class/corlib/System.Diagnostics/DebuggableAttribute.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// System.Collections.DebuggableAttribute.cs
-//
-// Author:
-// Nick Drochak II (ndrochak@gol.com)
-//
-// (C) 2001 Nick Drochak II
-//
-
-namespace System.Diagnostics {
-
- [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Module)]
- public sealed class DebuggableAttribute : System.Attribute {
-
- private bool JITTrackingEnabledFlag;
- private bool JITOptimizerDisabledFlag;
-
- // Public Instance Constructors
- public DebuggableAttribute(bool isJITTrackingEnabled, bool isJITOptimizerDisabled) {
- JITTrackingEnabledFlag = isJITTrackingEnabled;
- JITOptimizerDisabledFlag = isJITOptimizerDisabled;
- }
-
- // Public Instance Properties
- public bool IsJITTrackingEnabled { get { return JITTrackingEnabledFlag; } }
-
- public bool IsJITOptimizerDisabled { get { return JITOptimizerDisabledFlag; } }
- }
-}