Revert "Hopeful fix for ConcurrentModificationException in BlockArchiveReader.getFilenameForHeight()"

This reverts commit a12ae8ad24.
This commit is contained in:
CalDescent 2022-03-11 10:55:22 +00:00
parent c185d79672
commit b764172500

View File

@ -63,10 +63,8 @@ public class BlockArchiveReader {
map.put(filename, new Triple(startHeight, endHeight, range)); map.put(filename, new Triple(startHeight, endHeight, range));
} }
} }
synchronized (this.fileListCache) {
this.fileListCache = map; this.fileListCache = map;
} }
}
public Triple<BlockData, List<TransactionData>, List<ATStateData>> fetchBlockAtHeight(int height) { public Triple<BlockData, List<TransactionData>, List<ATStateData>> fetchBlockAtHeight(int height) {
if (this.fileListCache.isEmpty()) { if (this.fileListCache.isEmpty()) {