From a30c0aea829ea2fd71ea32ac7114012527d37d82 Mon Sep 17 00:00:00 2001 From: Darshan Panchal <105854074+Darshan016@users.noreply.github.com> Date: Mon, 3 Apr 2023 12:30:04 +0530 Subject: [PATCH] Update AbstractInMemoryTimeMapper.java --- .../search/earlybird/index/AbstractInMemoryTimeMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/twitter/search/earlybird/index/AbstractInMemoryTimeMapper.java b/src/java/com/twitter/search/earlybird/index/AbstractInMemoryTimeMapper.java index 4e9ef4f7c..b062f76c9 100644 --- a/src/java/com/twitter/search/earlybird/index/AbstractInMemoryTimeMapper.java +++ b/src/java/com/twitter/search/earlybird/index/AbstractInMemoryTimeMapper.java @@ -7,7 +7,7 @@ import com.twitter.search.earlybird.search.queries.SinceUntilFilter; public abstract class AbstractInMemoryTimeMapper implements TimeMapper { // Reverse map: timestamp to first doc ID seen with that timestamp. - // This is two arrays: the timestamps (sorted), and the doc ids. + // These are two arrays: the timestamps (sorted), and the doc ids. protected final IntBlockPool reverseMapTimes; protected final IntBlockPool reverseMapIds; protected volatile int reverseMapLastIndex;