1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +02:00

Removed a redundant condition.

This commit is contained in:
Sergey Prigogin 2010-01-18 05:28:51 +00:00
parent e2c52d813c
commit 2104825bd7

View file

@ -409,7 +409,7 @@ public abstract class AbstractIndexerTask extends PDOMWriter {
count++;
} else {
boolean update= false;
if (checkConfig && ifile.getParsedInContext() != null) {
if (checkConfig) {
update= isHeaderConfigChange(tu, ifile);
}
update= update || force || (checkTimestamps && fResolver.getLastModified(ifl) != ifile.getTimestamp());
@ -958,7 +958,6 @@ public abstract class AbstractIndexerTask extends PDOMWriter {
return null;
}
/**
* @return array of linkage IDs that should be parsed
*/