From: Alexandre Terrasa Date: Fri, 12 Dec 2014 20:29:56 +0000 (-0500) Subject: lib/html: fixes useless private visibility X-Git-Tag: v0.7~47^2~6 X-Git-Url: http://nitlanguage.org lib/html: fixes useless private visibility Signed-off-by: Alexandre Terrasa --- diff --git a/lib/html/html.nit b/lib/html/html.nit index f7ae180..83ff255 100644 --- a/lib/html/html.nit +++ b/lib/html/html.nit @@ -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