From 548a5bcd9713b69f91e332ea1005a9b41f84a146 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Tue, 14 Dec 2010 16:39:28 -0700 Subject: [PATCH] insert separator between C++ output stream ops fixes #21 --- src/com/dogcows/Editor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.43.0