Skip to main content
summaryrefslogtreecommitdiffstats
path: root/launch
diff options
context:
space:
mode:
authorMikhail Khodjaiants2006-05-18 15:35:46 +0000
committerMikhail Khodjaiants2006-05-18 15:35:46 +0000
commit2a042c66a128ea9fe0735ad57ca573f3cb942d90 (patch)
tree71a9816508a06eb282b46cd3f5644bde2634c7b6 /launch
parente55a3d34c00d4572f98ed4a92ed79494caff464e (diff)
downloadorg.eclipse.cdt-2a042c66a128ea9fe0735ad57ca573f3cb942d90.tar.gz
org.eclipse.cdt-2a042c66a128ea9fe0735ad57ca573f3cb942d90.tar.xz
org.eclipse.cdt-2a042c66a128ea9fe0735ad57ca573f3cb942d90.zip
Moved the new static methods from AbstractCLaunchDelegate to the new utility class.
Diffstat (limited to 'launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
index 58f5b77c03d..7c904f79042 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
@@ -242,7 +242,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
*
* @return the program arguments as a String
*/
- public static String getProgramArguments(ILaunchConfiguration config) throws CoreException {
+ public String getProgramArguments(ILaunchConfiguration config) throws CoreException {
return LaunchUtils.getProgramArguments(config);
}

Back to the top