model: remove `new_msignature` and special call as the new signature is the method...
[nit.git] / src / doc / console_templates / console_model.nit
index 96b1a40..7e9487f 100644 (file)
@@ -484,16 +484,10 @@ redef class MMethodDef
        end
 
        redef fun cs_short_signature do
-               if mproperty.is_root_init then
-                       return new_msignature.cs_short_signature
-               end
                return msignature.cs_short_signature
        end
 
        redef fun cs_signature do
-               if mproperty.is_root_init then
-                       return new_msignature.cs_signature
-               end
                return msignature.cs_signature
        end