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
path: root/mcs
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-10-15 19:41:30 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-10-15 19:41:30 +0400
commit5bf64ccfe2cbe64f4f0d5c372b4711c29657e6ca (patch)
treee84dfa8a25ed49d5698cb46406e7260690e377a7 /mcs
parent0628ee92f15f9ee7c02c25f2a2c31ae996ac16ba (diff)
2002-10-16 Nick Drochak <ndrochak@gol.com>
* typemanager.cs: Remove unused private member. Also reported mcs bug to report this as a warning like csc. svn path=/trunk/mcs/; revision=8292
Diffstat (limited to 'mcs')
-rwxr-xr-xmcs/mcs/ChangeLog5
-rwxr-xr-xmcs/mcs/typemanager.cs1
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/mcs/ChangeLog b/mcs/mcs/ChangeLog
index 30f63f27ee7..ded9422c104 100755
--- a/mcs/mcs/ChangeLog
+++ b/mcs/mcs/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-16 Nick Drochak <ndrochak@gol.com>
+
+ * typemanager.cs: Remove unused private member. Also reported mcs
+ bug to report this as a warning like csc.
+
2002-10-15 Martin Baulig <martin@gnome.org>
* statement.cs (Statement.Emit): Made this a virtual method; emits
diff --git a/mcs/mcs/typemanager.cs b/mcs/mcs/typemanager.cs
index 109dfcfe1c8..b0ec7da1a07 100755
--- a/mcs/mcs/typemanager.cs
+++ b/mcs/mcs/typemanager.cs
@@ -1096,7 +1096,6 @@ public class TypeManager {
//
// Whether a type is unmanaged. This is used by the unsafe code (25.2)
//
- Hashtable managed_types;
public static bool IsUnmanagedType (Type t)
{
if (IsBuiltinType (t) && t != TypeManager.string_type)