Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 166370
Collapse All | Expand All

(-)src/org/eclipse/tptp/platform/execution/client/core/internal/commands/LaunchProcessCommand.java (-2 / +8 lines)
Lines 79-87 Link Here
79
	{
79
	{
80
		this._exe = exe;
80
		this._exe = exe;
81
		this._location = location;
81
		this._location = location;
82
		this._param	 = parameter;
83
		this._environment = environment;
82
		this._environment = environment;
84
		this._commandData = new String();
83
		this._commandData = new String();
84
		
85
		try {
86
			setParameter (parameter);
87
		} catch (ProcessActiveException e) {}
85
	}
88
	}
86
	
89
	
87
	public Enumeration getEnvironment() 
90
	public Enumeration getEnvironment() 
Lines 117-123 Link Here
117
	 */
120
	 */
118
	public void setParameter(String param) throws ProcessActiveException 
121
	public void setParameter(String param) throws ProcessActiveException 
119
	{
122
	{
120
		this._param = param;
123
		if (param == null)
124
			_param = null;
125
		else
126
			_param = param.replace('\"', '\'');
121
	}
127
	}
122
128
123
	/* (non-Javadoc)
129
	/* (non-Javadoc)

Return to bug 166370