Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ public void endCurrentChunk() {
*/
@SuppressWarnings("squid:S3776") // Suppress high Cognitive Complexity warning
public void endFile() throws IOException {
long startTime = System.currentTimeMillis();
checkInMemoryPathCount();
readChunkMetadataAndConstructIndexTree();

Expand All @@ -348,8 +347,6 @@ public void endFile() throws IOException {
}
}
canWrite = false;
long cost = System.currentTimeMillis() - startTime;
logger.debug("Time for flushing metadata is {} ms", cost);
}

private void checkInMemoryPathCount() {
Expand Down