[Swift-commit] r7315 - trunk/src/org/griphyn/vdl/engine

hategan at ci.uchicago.edu hategan at ci.uchicago.edu
Sun Nov 24 13:42:14 CST 2013


Author: hategan
Date: 2013-11-24 13:42:13 -0600 (Sun, 24 Nov 2013)
New Revision: 7315

Modified:
   trunk/src/org/griphyn/vdl/engine/Karajan.java
Log:
fixed invalid concurrent mapper errors

Modified: trunk/src/org/griphyn/vdl/engine/Karajan.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/Karajan.java	2013-11-24 15:18:37 UTC (rev 7314)
+++ trunk/src/org/griphyn/vdl/engine/Karajan.java	2013-11-24 19:42:13 UTC (rev 7315)
@@ -488,7 +488,7 @@
 			// add temporary mapping info in not primitive or array of primitive	    
 			if (!isPrimitiveOrArrayOfPrimitive(var.getType().getLocalPart())) {
     			StringTemplate mappingST = new StringTemplate("mapping");
-    			mappingST.setAttribute("descriptor", "concurrentMapper");
+    			mappingST.setAttribute("descriptor", "ConcurrentMapper");
     			StringTemplate paramST = template("swift_parameter");
     			paramST.setAttribute("name", "prefix");
     			paramST.setAttribute("expr", "\"" + var.getName() + "-"
@@ -539,7 +539,7 @@
             StringTemplate variableDeclarationST = template("variable");
             // TODO factorise this and other code in variable()?
             StringTemplate pmappingST = new StringTemplate("mapping");
-            pmappingST.setAttribute("descriptor", "concurrentMapper");
+            pmappingST.setAttribute("descriptor", "ConcurrentMapper");
             StringTemplate pparamST = template("swift_parameter");
             pparamST.setAttribute("name", "prefix");
             pparamST.setAttribute("expr", parameterVariableName + "-" + 




More information about the Swift-commit mailing list