1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

Fixed typo

This commit is contained in:
0xNF
2012-09-21 15:58:06 -04:00
parent 0f89855506
commit c19e11603e

View File

@@ -110,7 +110,7 @@ public final class KeywordSearchIngestModule implements IngestModuleAbstractFile
private Indexer indexer;
private Searcher currentSearcher;
private Searcher finalSearcher;
private volatile boolean searcherDone = true; //mark as done, until it's initedf
private volatile boolean searcherDone = true; //mark as done, until it's inited
private Map<Keyword, List<Long>> currentResults;
private static final ReentrantReadWriteLock rwLock = new ReentrantReadWriteLock(true); //use fairness policy
private static final Lock searcherLock = rwLock.writeLock();