[Pkg-mono-svn-commits] [SCM] mono branch, master, updated. debian/2.4+dfsg-6-26-g8b65c7c

Mirco Bauer meebey at meebey.net
Wed Aug 5 23:04:09 UTC 2009


The following commit has been merged in the master branch:
commit 293f4747f33cf72854eeeb2ed563e01936a7c057
Author: Mirco Bauer <meebey at meebey.net>
Date:   Fri Jul 31 02:12:16 2009 +0200

    added dirty hack to ignore generic-parameters tag for now

diff --git a/debian/mono-api-diff.cs b/debian/mono-api-diff.cs
index 9a714cd..2f9d8cd 100644
--- a/debian/mono-api-diff.cs
+++ b/debian/mono-api-diff.cs
@@ -740,6 +740,12 @@ namespace Mono.AssemblyCompare
 				child = child.NextSibling;
 			}
 
+			if (child != null && child.Name == "generic-parameters") {
+				// HACK: ignore this tag as it doesn't seem to
+				// add any value when checking for differences
+				return;
+			}
+
 			if (child == null)
 				return;
 

-- 
mono



More information about the Pkg-mono-svn-commits mailing list