Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorLeo Treggiari2005-11-13 23:32:08 +0000
committerLeo Treggiari2005-11-13 23:32:08 +0000
commitdb0da96c2a41127985cb40dbae3f4f93ae1d0745 (patch)
tree720c1919bbbeed5092be32a5695d89bc620b5578 /build
parent56328ac878ebac7405c7ae21cd3622a6858bd854 (diff)
downloadorg.eclipse.cdt-db0da96c2a41127985cb40dbae3f4f93ae1d0745.tar.gz
org.eclipse.cdt-db0da96c2a41127985cb40dbae3f4f93ae1d0745.tar.xz
org.eclipse.cdt-db0da96c2a41127985cb40dbae3f4f93ae1d0745.zip
Comment out evaluateCommand method that is never called
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/BuildToolSettingsPage.java12
1 files changed, 3 insertions, 9 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/BuildToolSettingsPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/BuildToolSettingsPage.java
index 5b390eccf31..cc398d1a2e4 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/BuildToolSettingsPage.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/BuildToolSettingsPage.java
@@ -192,15 +192,9 @@ public class BuildToolSettingsPage extends BuildSettingsPage {
/**
* Look for ${VALUE} in the command string
*/
- private String evaluateCommand( String command, String values ) {
- if( command == null ) return values.trim();
- if( command.indexOf( "${" ) >= 0 ) { //$NON-NLS-1$
- return command.replaceAll( "\\$\\{[vV][aA][lL][uU][eE]\\}", values.trim() ).trim(); //$NON-NLS-1$
- }
- else {
- return (new String(command + values)).trim();
- }
- }
+ //private String evaluateCommand( String command, String values ) {
+ // return (((Tool)clonedTool).evaluateCommand(command, values));
+ //}
/**
* Answers <code>true</code> if the receiver manages settings for the

Back to the top