src/doc: fix useless signature in redef warnings
authorAlexandre Terrasa <alexandre@moz-code.org>
Wed, 20 Apr 2016 06:38:38 +0000 (02:38 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Wed, 20 Apr 2016 22:40:50 +0000 (18:40 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/doc/model_ext.nit

index 2adc9fd..6f2f8b1 100644 (file)
@@ -24,7 +24,7 @@ intrude import model::model_base
 class MRawType
        super MType
 
-       redef var model: Model
+       redef var model
 
        # The parts that contitute the description of the type.
        var parts: Sequence[MTypePart] = new Array[MTypePart]
@@ -71,7 +71,7 @@ end
 class MTypePart
        super MEntity
 
-       redef var model: Model
+       redef var model
 
        # The textual content.
        var text: String