Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2018-09-11 21:55:00 +0000
committerJeff Johnston2018-09-12 16:01:09 +0000
commit109cd0c6aac9a22e2e4e4590146bb47ebe115135 (patch)
treeea17094d6a72eab634d710e42781403d26460d1b /core/org.eclipse.cdt.core
parentaeb6e386396abd763aa9bea7a3809c820e62c6e0 (diff)
downloadorg.eclipse.cdt-109cd0c6aac9a22e2e4e4590146bb47ebe115135.tar.gz
org.eclipse.cdt-109cd0c6aac9a22e2e4e4590146bb47ebe115135.tar.xz
org.eclipse.cdt-109cd0c6aac9a22e2e4e4590146bb47ebe115135.zip
Bug 536884 - Removing header cache should cause ScannerInfo refresh
- don't reset setting in shutdown() method as this clears the property prematurely for meson and cmake projects Change-Id: I2dd2467427d00aeade335319ec2ceec9f6d7168d
Diffstat (limited to 'core/org.eclipse.cdt.core')
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
index 76c50e694f3..7ce3e22771c 100644
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
+++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
@@ -1145,9 +1145,6 @@ public abstract class CBuildConfiguration extends PlatformObject
public void shutdown() {
// TODO persist changes
- // Bug 536884 - Turn off any manual future scanner refresh
- toolChain.setProperty(NEED_REFRESH, "false"); //$NON-NLS-1$
-
// Trigger a reindex if anything changed
// TODO be more surgical
if (infoChanged) {

Back to the top