Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Mono
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2015-05-28 20:17:51 +0300
committerJb Evain <jb@evain.net>2015-05-28 20:21:22 +0300
commitff1110260564d91c9d3e977c345fcbc055bc04dd (patch)
treee3d1dcbe7be70dd3a9a782c02fd29144e8f5c3e9 /Mono
parent2cd32880c896bf22566686e5d1ed462c8120bcfa (diff)
Remove support for building against SL and the CF in favor of a PCL
Diffstat (limited to 'Mono')
-rw-r--r--Mono/Empty.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Mono/Empty.cs b/Mono/Empty.cs
index d832065..cef2078 100644
--- a/Mono/Empty.cs
+++ b/Mono/Empty.cs
@@ -35,14 +35,7 @@ namespace Mono.Cecil {
public static T [] Resize<T> (this T [] self, int length)
{
-#if !CF
Array.Resize (ref self, length);
-#else
- var copy = new T [length];
- Array.Copy (self, copy, self.Length);
- self = copy;
-#endif
-
return self;
}
}