Don't queue indexing tasks for the ABoxRecomputer

This commit is contained in:
Graham Triggs 2015-02-13 12:10:41 +00:00
parent 45b753119d
commit 999fb5e1f9
4 changed files with 49 additions and 6 deletions

View file

@ -31,7 +31,12 @@ public class SearchIndexerStub implements SearchIndexer {
paused = true;
}
@Override
@Override
public void pauseWithoutDeferring() {
paused = true;
}
@Override
public void unpause() {
paused = false;
}