Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Krasilnikov2007-04-03 13:43:01 +0000
committerOleg Krasilnikov2007-04-03 13:43:01 +0000
commit86006c2f1344fbd428f19847debe7b97e738e96c (patch)
treea6a2c14e942796220325509e2d158bc00fddd44a /build/org.eclipse.cdt.make.ui
parent733f00d3a88f53c26e02e31f453299c15e14c271 (diff)
downloadorg.eclipse.cdt-86006c2f1344fbd428f19847debe7b97e738e96c.tar.gz
org.eclipse.cdt-86006c2f1344fbd428f19847debe7b97e738e96c.tar.xz
org.eclipse.cdt-86006c2f1344fbd428f19847debe7b97e738e96c.zip
Warning elimination
Diffstat (limited to 'build/org.eclipse.cdt.make.ui')
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/MakeProjectWizardOptionPage.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/MakeProjectWizardOptionPage.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/MakeProjectWizardOptionPage.java
index ff6ce3d8417..d979f72b0bc 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/MakeProjectWizardOptionPage.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/wizards/MakeProjectWizardOptionPage.java
@@ -102,7 +102,9 @@ public class MakeProjectWizardOptionPage extends NewCProjectWizardOptionPage {
}
public boolean isIndexerEnabled(){
- return makeWizardBlock.indexBlock.isIndexEnabled();
+// isIndexEnabled() * @deprecated always returns false
+// return makeWizardBlock.indexBlock.isIndexEnabled();
+ return false;
}
public void setupHelpContextIds(){

Back to the top