1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 18:55:38 +02:00

revert unintentional API break to deprecated org.eclipse.cdt.core.CommandLauncher.execute(IPath, String[], String[], IPath).

This commit is contained in:
Warren Paul 2009-05-13 17:56:58 +00:00
parent ee628f9a74
commit 78550c0982

View file

@ -115,7 +115,7 @@ public class CommandLauncher implements ICommandLauncher {
* @since 5.1
*/
@Deprecated
public Process execute(IPath commandPath, String[] args, String[] env, IPath changeToDirectory) throws CoreException {
public Process execute(IPath commandPath, String[] args, String[] env, IPath changeToDirectory) {
try {
// add platform specific arguments (shell invocation)
fCommandArgs = constructCommandArray(commandPath.toOSString(), args);