Resolves issue #40.

http://github.com/helma-next/helma-next/issues#issue/40
This commit is contained in:
Daniel Ruthardt 2010-07-11 08:10:18 +08:00 committed by Tobi Schäfer
parent 0929cd1e57
commit eda05c731a

View file

@ -66,9 +66,9 @@ public class HacHspConverter {
f.append(" ("); f.append(" (");
if (args != null) if (args != null)
f.append(args); f.append(args);
f.append(") {\n"); f.append(") {");
f.append(body); f.append(body);
f.append("\n}"); f.append("}");
return f.toString(); return f.toString();
} }