nitdoc: disable an `assert` broken by recent merges
authorJean Privat <jean@pryen.org>
Mon, 29 Jul 2013 20:03:58 +0000 (16:03 -0400)
committerJean Privat <jean@pryen.org>
Mon, 29 Jul 2013 20:03:58 +0000 (16:03 -0400)
Possibly commit eb136d42d4850b491f65db9ac4b98591a21d7baf is the one
that broke the assert.

Signed-off-by: Jean Privat <jean@pryen.org>

src/nitdoc.nit

index 50bd192..bb56dfe 100644 (file)
@@ -1131,7 +1131,7 @@ redef class MMLocalProperty
                        var tlp
                        if tm.global_classes.has(lc.global) then
                                tlp = tm[lc.global][self.global]
-                               assert lps.has(tlp)
+                               #assert lps.has(tlp) # FIXME What this line is used for?
                        else if tm.global_classes.has(self.local_class.global) then
                                # Self is the inherited property. Process it
                                tlp = tm[self.local_class.global][self.global]