From 78550c0982cfb0b297795ba0892f60209cdbb4c7 Mon Sep 17 00:00:00 2001 From: Warren Paul Date: Wed, 13 May 2009 17:56:58 +0000 Subject: [PATCH] revert unintentional API break to deprecated org.eclipse.cdt.core.CommandLauncher.execute(IPath, String[], String[], IPath). --- .../src/org/eclipse/cdt/core/CommandLauncher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CommandLauncher.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CommandLauncher.java index c71b1c46caf..40c43625fd2 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CommandLauncher.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CommandLauncher.java @@ -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);