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
diff options
context:
space:
mode:
Diffstat (limited to 'Mono/Empty.cs')
-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;
}
}