use contact instead of "+"

This commit is contained in:
Sebastian Sdorra
2011-04-30 13:52:20 +02:00
parent d096b914ac
commit 52c8cdf3e8

View File

@@ -143,12 +143,12 @@ public class DefaultCGIExecutor extends AbstractCGIExecutor
if ((execCmd.charAt(0) != '"') && (execCmd.indexOf(" ") >= 0))
{
execCmd = "\"" + execCmd + "\"";
execCmd = "\"".concat(execCmd).concat("\"");
}
if (interpreter != null)
{
execCmd = interpreter + " " + execCmd;
execCmd = interpreter.concat(" ").concat(execCmd);
}
if (logger.isDebugEnabled())