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:
authorRodrigo Kumpera <kumpera@gmail.com>2013-02-12 03:40:55 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2013-02-12 03:42:18 +0400
commit1b92a4148cf4973d49f3b1772acbd2752cfea115 (patch)
treeb82c756cfc69fa0ae44aca147a8905bd0ac500e6 /mcs/class/Mono.Parallel
parentf378e23a3fe5e9c892bf55034936bb10da18840b (diff)
Since MOBILE implies NET_4_* now, take this into account and simplify our ifdefs.
Diffstat (limited to 'mcs/class/Mono.Parallel')
-rw-r--r--mcs/class/Mono.Parallel/Mono.Threading.Tasks/FixedTaskScheduler.cs2
-rw-r--r--mcs/class/Mono.Parallel/Mono.Threading.Tasks/ThreadWorker.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/Mono.Parallel/Mono.Threading.Tasks/FixedTaskScheduler.cs b/mcs/class/Mono.Parallel/Mono.Threading.Tasks/FixedTaskScheduler.cs
index 00481ffe79c..da656a57868 100644
--- a/mcs/class/Mono.Parallel/Mono.Threading.Tasks/FixedTaskScheduler.cs
+++ b/mcs/class/Mono.Parallel/Mono.Threading.Tasks/FixedTaskScheduler.cs
@@ -22,7 +22,7 @@
//
//
-#if NET_4_0 || MOBILE
+#if NET_4_0
using System;
using System.Threading;
using System.Threading.Tasks;
diff --git a/mcs/class/Mono.Parallel/Mono.Threading.Tasks/ThreadWorker.cs b/mcs/class/Mono.Parallel/Mono.Threading.Tasks/ThreadWorker.cs
index d205e250ee3..575763cc435 100644
--- a/mcs/class/Mono.Parallel/Mono.Threading.Tasks/ThreadWorker.cs
+++ b/mcs/class/Mono.Parallel/Mono.Threading.Tasks/ThreadWorker.cs
@@ -22,7 +22,7 @@
//
//
-#if NET_4_0 || MOBILE
+#if NET_4_0
using System;
using System.Threading;
using System.Collections.Concurrent;