mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 15:05:36 +02:00
Fix for Bug 78678: Indexer stops reindexing file after repeated saves
This commit is contained in:
parent
6a84887550
commit
502f1c4822
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-11-17 Bogdan Gheorghe
|
||||||
|
Fix for Bug 78678: Indexer stops reindexing file after repeated saves
|
||||||
|
|
||||||
|
* index/org/eclipse/cdt/internal/core/search/processing/JobManager.java
|
||||||
|
|
||||||
|
|
||||||
2004-11-12 Bogdan Gheorghe
|
2004-11-12 Bogdan Gheorghe
|
||||||
Fix for Bug 78414: IProblem count increased through indexing header files stand-alone
|
Fix for Bug 78414: IProblem count increased through indexing header files stand-alone
|
||||||
|
|
||||||
|
|
|
@ -472,7 +472,11 @@ public abstract class JobManager implements Runnable {
|
||||||
//if (status == FAILED) request(job);
|
//if (status == FAILED) request(job);
|
||||||
} finally {
|
} finally {
|
||||||
executing = false;
|
executing = false;
|
||||||
jobFinishedNotification(currentJob());
|
|
||||||
|
//Answer the job directly from the array; using currentJob()
|
||||||
|
//results in no notification if indexing is disabled (Bug 78678)
|
||||||
|
jobFinishedNotification(awaitingJobs[jobStart]);
|
||||||
|
|
||||||
if (VERBOSE) {
|
if (VERBOSE) {
|
||||||
JobManager.verbose("FINISHED background job - " + job); //$NON-NLS-1$
|
JobManager.verbose("FINISHED background job - " + job); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue