Put this all on one line to avoid weird whitespace.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5245 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 12:48:57 +00:00
parent 219ab38b77
commit 85b26867e3
@@ -34,9 +34,7 @@ public class ${name}Dispatcher extends InvocationDispatcher<${name}Marshaller>
#foreach ($m in $methods)
case ${name}Marshaller.$m.code:
((${name}Provider)provider).${m.method.name}(
source#if ($m.hasArgs(true)),
#end
$m.getUnwrappedArgList(false)
source#if ($m.hasArgs(true)), #end$m.getUnwrappedArgList(false)
);
return;