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/MissingInterface.cs')
-rw-r--r--mcs/tools/corcompare/MissingInterface.cs51
1 files changed, 0 insertions, 51 deletions
diff --git a/mcs/tools/corcompare/MissingInterface.cs b/mcs/tools/corcompare/MissingInterface.cs
deleted file mode 100644
index d4c274b61e6..00000000000
--- a/mcs/tools/corcompare/MissingInterface.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-// Mono.Util.CorCompare.MissingField
-//
-// Author(s):
-// Piers Haken (piersh@friskit.com)
-//
-// (C) 2002 Piers Haken
-
-using System;
-using System.Reflection;
-
-namespace Mono.Util.CorCompare
-{
-
- /// <summary>
- /// Represents an interface implemented on a class
- /// </summary>
- /// <remarks>
- /// created by - Piers
- /// created on - 10:34 AM 3/12/2002
- /// </remarks>
- class MissingInterface : MissingBase
- {
- protected Type ifaceMono;
- protected Type ifaceMS;
-
- // e.g. <method name="Equals" status="missing"/>
- public MissingInterface (Type _ifaceMono, Type _ifaceMS)
- {
- ifaceMono = _ifaceMono;
- ifaceMS = _ifaceMS;
- m_nodeStatus = new NodeStatus (ifaceMono, ifaceMS);
- }
-
- public override string Type
- {
- get { return "interface"; }
- }
- public override string Name
- {
- get { return Interface.FullName; }
- }
- protected Type Interface
- {
- get { return (ifaceMono != null) ? ifaceMono : ifaceMS; }
- }
- public override NodeStatus Analyze ()
- {
- return m_nodeStatus;
- }
- }
-}