JMustache now requires fewer machinations to get sensible newline behavior.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6719 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2011-09-30 02:51:17 +00:00
parent 3d1fe821e8
commit 82d31da4f8
3 changed files with 3 additions and 9 deletions
@@ -12,7 +12,6 @@
{{#namespaces}}namespace {{this}} { {{/namespaces}}
class {{name}} : public presents::data::InvocationMarshaller, public boost::enable_shared_from_this<{{name}}> {
public:
DECLARE_STREAMABLE();
@@ -26,5 +25,4 @@ protected:
Shared<{{name}}> getSharedThis();
};
{{#namespaces}}
}{{/namespaces}}
{{#namespaces}}}{{/namespaces}}
@@ -9,9 +9,7 @@
#include "{{this}}"
{{/includes}}
{{#namespaces}}
namespace {{this}} { {{/namespaces}}
{{#namespaces}}namespace {{this}} { {{/namespaces}}
class {{name}} : public {{super}} {
public:
@@ -25,5 +23,4 @@ public:
virtual void writeObject(ObjectOutputStream& out) const;
};
{{#namespaces}}
}{{/namespaces}}
{{#namespaces}}}{{/namespaces}}
@@ -20,7 +20,6 @@ public interface {{name}}Provider extends InvocationProvider
* Handles a {@link {{name}}Service#{{method.name}}} request.
*/
{{typeParams}}void {{method.name}} ({{callerType}} caller{{#hasArgs}}, {{/hasArgs}}{{getArgList}}){{^listenerArgs.isEmpty}}
throws InvocationException{{/listenerArgs.isEmpty}};
{{/methods}}
}