From: Alexandre Terrasa Date: Wed, 20 Apr 2016 06:33:00 +0000 (-0400) Subject: lib: fix useless redef signature warnings X-Git-Url: http://nitlanguage.org lib: fix useless redef signature warnings Signed-off-by: Alexandre Terrasa --- diff --git a/lib/pnacl/examples/converter/converter.nit b/lib/pnacl/examples/converter/converter.nit index 907aaa3..69966bd 100644 --- a/lib/pnacl/examples/converter/converter.nit +++ b/lib/pnacl/examples/converter/converter.nit @@ -27,8 +27,7 @@ class Converter super PnaclApp # We have to redefine the method to do what we want when receiving a dictionary from JS - redef fun handle_dictionary(dictionary: PepperDictionary) - do + redef fun handle_dictionary(dictionary) do # Getting values from the dictionary var from = dictionary["from"] var to = dictionary["to"]