From 8bcdba1bec1fc70797e6d0ca187c3ead4aefb531 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 12 May 2011 08:17:49 +0200 Subject: [PATCH] Bug 654448 - Remove sanity check after each merge in pyxpt, it's already done when writing output. r=ted --- xpcom/typelib/xpt/tools/xpt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/xpcom/typelib/xpt/tools/xpt.py b/xpcom/typelib/xpt/tools/xpt.py index cea8ab1274a..a7e72367454 100644 --- a/xpcom/typelib/xpt/tools/xpt.py +++ b/xpcom/typelib/xpt/tools/xpt.py @@ -1229,7 +1229,6 @@ class Typelib(object): checkType(m.result.type, replaced_from, replaced_to) for p in m.params: checkType(p.type, replaced_from, replaced_to) - self._sanityCheck() #TODO: do we care about annotations? probably not def dump(self, out):