Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java
index cb5e3649011..bc307bf58a7 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/NullIndexerBlock.java
@@ -22,15 +22,18 @@ import org.eclipse.swt.widgets.Composite;
*/
public class NullIndexerBlock extends AbstractIndexerPage {
+ @Override
public void createControl(Composite parent) {
super.createControl(parent);
ControlEnableState.disable(getControl());
}
+ @Override
public Properties getProperties() {
return new Properties();
}
+ @Override
public void setProperties(Properties properties) {
}
}

Back to the top