[Swift-commit] r2873 - trunk/src/org/griphyn/vdl/engine
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Thu Apr 23 03:16:16 CDT 2009
Author: benc
Date: 2009-04-23 03:16:16 -0500 (Thu, 23 Apr 2009)
New Revision: 2873
Modified:
trunk/src/org/griphyn/vdl/engine/Karajan.java
Log:
correct missing quote in error message
Modified: trunk/src/org/griphyn/vdl/engine/Karajan.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/Karajan.java 2009-04-23 08:15:03 UTC (rev 2872)
+++ trunk/src/org/griphyn/vdl/engine/Karajan.java 2009-04-23 08:16:16 UTC (rev 2873)
@@ -756,7 +756,7 @@
|| type.equals("boolean") || type.equals("boolean[]")) {
appST.setAttribute("arguments", argumentST);
} else {
- throw new CompilationException("Cannot pass type '"+type+"' as a parameter to application '"+app.getExecutable());
+ throw new CompilationException("Cannot pass type '"+type+"' as a parameter to application '"+app.getExecutable()+"'");
}
}
if(app.getStdin()!=null)
More information about the Swift-commit
mailing list