Remove no longer used BOOTSTRAP conditionals
[mono.git] / mcs / class / System / System.Threading / SemaphoreFullException.cs
index 4b8b2376c35b9af734be51a209a0fea45b60590e..6995b35d98c5c63c4be48bf5136a1a40a54de91c 100644 (file)
@@ -26,7 +26,7 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if (!NET_4_0 && NET_2_0 && !INSIDE_CORLIB) || ((NET_4_0 || BOOTSTRAP_NET_4_0) && INSIDE_CORLIB)
+#if (!NET_4_0 && !INSIDE_CORLIB) || (NET_4_0 && INSIDE_CORLIB)
 
 using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
@@ -34,7 +34,7 @@ using System.Runtime.CompilerServices;
 
 namespace System.Threading {
 
-#if (NET_4_0 || BOOTSTRAP_NET_4_0) && INSIDE_CORLIB
+#if NET_4_0 && INSIDE_CORLIB
        [TypeForwardedFrom (Consts.AssemblySystem_2_0)]
 #endif
        [ComVisible (false)]
@@ -63,7 +63,7 @@ namespace System.Threading {
        }
 
 }
-#elif (NET_4_0 || BOOTSTRAP_NET_4_0) && !INSIDE_CORLIB
+#elif NET_4_0 && !INSIDE_CORLIB
 using System.Runtime.CompilerServices;
 using System.Threading;