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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Toshok <toshok@novell.com>2008-08-14 00:01:00 +0400
committerChris Toshok <toshok@novell.com>2008-08-14 00:01:00 +0400
commit0992590651d50d6dc20bc752b82071a52479ee1d (patch)
treeedb55885c10dcecd7d27a299c1e94ca47f253903 /gui-compare
parentdb18bbaae54d5bf433d5273aab824f5b7e91ad3d (diff)
2008-08-13 Chris Toshok <toshok@ximian.com>
* CecilMetadata.cs: go back to ignoring all private methods. if there are missing methods due to this, we need to fix the .xml generation. svn path=/trunk/mono-tools/; revision=110399
Diffstat (limited to 'gui-compare')
-rw-r--r--gui-compare/CecilMetadata.cs6
-rw-r--r--gui-compare/ChangeLog6
2 files changed, 7 insertions, 5 deletions
diff --git a/gui-compare/CecilMetadata.cs b/gui-compare/CecilMetadata.cs
index 0de84aa1..1d640dcd 100644
--- a/gui-compare/CecilMetadata.cs
+++ b/gui-compare/CecilMetadata.cs
@@ -99,11 +99,7 @@ namespace GuiCompare {
if (!md.Name.StartsWith("op_"))
continue;
}
- if (md.IsAssembly)
- continue;
- // don't exclude private methods that implements explicit interfaces
- // note: this also adds explicit implementation of *private* interfaces (should be rare)
- if (md.IsPrivate && md.Name.IndexOf ('.') < 0)
+ if (md.IsPrivate || md.IsAssembly)
continue;
method_list.Add (new CecilMethod (md));
diff --git a/gui-compare/ChangeLog b/gui-compare/ChangeLog
index ed750462..15f9c145 100644
--- a/gui-compare/ChangeLog
+++ b/gui-compare/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-13 Chris Toshok <toshok@ximian.com>
+
+ * CecilMetadata.cs: go back to ignoring all private methods. if
+ there are missing methods due to this, we need to fix the .xml
+ generation.
+
2008-08-11 Sebastien Pouliot <sebastien@ximian.com>
* CecilMetadata.cs: PrettyPrint nullable types correctly.