mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Removed a redundant condition.
This commit is contained in:
parent
e2c52d813c
commit
2104825bd7
1 changed files with 8 additions and 9 deletions
|
@ -409,7 +409,7 @@ public abstract class AbstractIndexerTask extends PDOMWriter {
|
||||||
count++;
|
count++;
|
||||||
} else {
|
} else {
|
||||||
boolean update= false;
|
boolean update= false;
|
||||||
if (checkConfig && ifile.getParsedInContext() != null) {
|
if (checkConfig) {
|
||||||
update= isHeaderConfigChange(tu, ifile);
|
update= isHeaderConfigChange(tu, ifile);
|
||||||
}
|
}
|
||||||
update= update || force || (checkTimestamps && fResolver.getLastModified(ifl) != ifile.getTimestamp());
|
update= update || force || (checkTimestamps && fResolver.getLastModified(ifl) != ifile.getTimestamp());
|
||||||
|
@ -958,7 +958,6 @@ public abstract class AbstractIndexerTask extends PDOMWriter {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array of linkage IDs that should be parsed
|
* @return array of linkage IDs that should be parsed
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue