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/tools/corcompare/MissingConstructor.cs')
-rw-r--r--mcs/tools/corcompare/MissingConstructor.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/tools/corcompare/MissingConstructor.cs b/mcs/tools/corcompare/MissingConstructor.cs
deleted file mode 100644
index eda6f52b23a..00000000000
--- a/mcs/tools/corcompare/MissingConstructor.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-// Mono.Util.CorCompare.MissingConstructor
-//
-// Author(s):
-// Nick Drochak (ndrochak@gol.com)
-//
-// (C) 2001-2002 Nick Drochak
-
-using System;
-using System.Reflection;
-
-namespace Mono.Util.CorCompare {
-
- /// <summary>
- /// Represents a class event that is completely missing
- /// </summary>
- /// <remarks>
- /// created by - Nick
- /// created on - 2/24/2002 10:43:57 PM
- /// </remarks>
- class MissingConstructor : MissingMethod {
- // e.g. <method name="Equals" status="missing"/>
- public MissingConstructor (MemberInfo infoMono, MemberInfo infoMS) : base (infoMono, infoMS) {}
-
- public override string Type {
- get {
- return "constructor";
- }
- }
- }
-}