From: Charles McGarvey Date: Tue, 14 Dec 2010 23:39:28 +0000 (-0700) Subject: insert separator between C++ output stream ops X-Git-Tag: v0.3.1~1 X-Git-Url: https://git.brokenzipper.com/gitweb?p=chaz%2Fvimcoder;a=commitdiff_plain;h=548a5bcd9713b69f91e332ea1005a9b41f84a146 insert separator between C++ output stream ops fixes #21 --- diff --git a/src/com/dogcows/Editor.java b/src/com/dogcows/Editor.java index 57e1b77..ea68058 100644 --- a/src/com/dogcows/Editor.java +++ b/src/com/dogcows/Editor.java @@ -97,7 +97,7 @@ public class Editor language)); terms.put("METHODPARAMNAMES", Util.join(component.getParamNames(), ", ")); terms.put("METHODPARAMSTREAMIN", Util.join(component.getParamNames(), " >> ")); - terms.put("METHODPARAMSTREAMOUT", Util.join(component.getParamNames(), " << ")); + terms.put("METHODPARAMSTREAMOUT", Util.join(component.getParamNames(), " << \", \" << ")); terms.put("METHODPARAMDECLARES", getMethodParamDeclarations(component.getParamTypes(), component.getParamNames(), language));