lib/html: fixes useless private visibility
authorAlexandre Terrasa <alexandre@moz-code.org>
Fri, 12 Dec 2014 20:29:56 +0000 (15:29 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Fri, 12 Dec 2014 20:29:56 +0000 (15:29 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/html/html.nit

index f7ae180..83ff255 100644 (file)
@@ -325,6 +325,6 @@ end
 private class HTMLRaw
        super HTMLTag
 
-       private var content: String
+       var content: String
        redef fun render_in(res) do res.add content
 end