remove all old cos objects

This commit is contained in:
Eliot Jones
2018-01-21 14:56:50 +00:00
parent e24a306c31
commit 3172596b7c
31 changed files with 33 additions and 3958 deletions

View File

@@ -26,7 +26,6 @@
/// Since we want to scan objects while reading the cross reference table we lazily load it when it's ready.
/// </summary>
private readonly Func<CrossReferenceTable> crossReferenceTable;
private readonly CosObjectPool pool;
private readonly BruteForceSearcher searcher;
/// <summary>
@@ -36,10 +35,9 @@
private readonly Dictionary<IndirectReference, long> offsets = new Dictionary<IndirectReference, long>();
public ObjectLocationProvider(Func<CrossReferenceTable> crossReferenceTable, CosObjectPool pool, BruteForceSearcher searcher)
public ObjectLocationProvider(Func<CrossReferenceTable> crossReferenceTable, BruteForceSearcher searcher)
{
this.crossReferenceTable = crossReferenceTable;
this.pool = pool;
this.searcher = searcher;
}