X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Collections.Generic%2FComparer.cs;fp=mcs%2Fclass%2Fcorlib%2FSystem.Collections.Generic%2FComparer.cs;h=d19ce2cc8bbb5002be28bfa8ccea905871c82a84;hb=c1b43669320f96e4a2a482d993b7b36bb5e59496;hp=7a8eb928f0ccb7d1a52b5bf65adbd23672a3a762;hpb=2375c74a646b46877c5441f06f231529e5206425;p=mono.git diff --git a/mcs/class/corlib/System.Collections.Generic/Comparer.cs b/mcs/class/corlib/System.Collections.Generic/Comparer.cs index 7a8eb928f0c..d19ce2cc8bb 100644 --- a/mcs/class/corlib/System.Collections.Generic/Comparer.cs +++ b/mcs/class/corlib/System.Collections.Generic/Comparer.cs @@ -47,7 +47,6 @@ namespace System.Collections.Generic { } } -#if NET_4_5 public static Comparer Create (Comparison comparison) { if (comparison == null) @@ -55,7 +54,6 @@ namespace System.Collections.Generic { return new ComparisonComparer (comparison); } -#endif int IComparer.Compare (object x, object y) { @@ -110,7 +108,6 @@ namespace System.Collections.Generic { return x.CompareTo (y); } } -#if NET_4_5 [Serializable] sealed class ComparisonComparer : Comparer { @@ -126,5 +123,4 @@ namespace System.Collections.Generic { return comparison (x, y); } } -#endif }