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/System/Test/System.Text.RegularExpressions/RegexTest.cs')
-rw-r--r--mcs/class/System/Test/System.Text.RegularExpressions/RegexTest.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/mcs/class/System/Test/System.Text.RegularExpressions/RegexTest.cs b/mcs/class/System/Test/System.Text.RegularExpressions/RegexTest.cs
index 5978a5d095f..79ad728c5bf 100644
--- a/mcs/class/System/Test/System.Text.RegularExpressions/RegexTest.cs
+++ b/mcs/class/System/Test/System.Text.RegularExpressions/RegexTest.cs
@@ -11,9 +11,7 @@
using System;
using System.Text.RegularExpressions;
-#if NET_2_0
using System.Collections.Generic;
-#endif
using NUnit.Framework;
@@ -54,7 +52,6 @@ namespace MonoTests.System.Text.RegularExpressions
protected bool Compiled { get; set; }
-#if NET_2_0
private int cache_initial_value;
[TestFixtureSetUp]
@@ -68,7 +65,6 @@ namespace MonoTests.System.Text.RegularExpressions
{
Regex.CacheSize = cache_initial_value;
}
-#endif
[Test]
public void Simple ()
@@ -445,7 +441,6 @@ namespace MonoTests.System.Text.RegularExpressions
foreach (MatchCollectionTrial t in trials)
runTrial (t,Compiled);
}
-#if NET_2_0
[Test]
public void CacheSize ()
{
@@ -525,6 +520,5 @@ namespace MonoTests.System.Text.RegularExpressions
x += "1";
}
}
-#endif
}
}