diff --git a/plugins/stats-collector/log-events/src/com/intellij/stats/completion/LookupEntryInfo.kt b/plugins/stats-collector/log-events/src/com/intellij/stats/completion/LookupEntryInfo.kt index 9aae3f006dc3..a837780afe89 100644 --- a/plugins/stats-collector/log-events/src/com/intellij/stats/completion/LookupEntryInfo.kt +++ b/plugins/stats-collector/log-events/src/com/intellij/stats/completion/LookupEntryInfo.kt @@ -21,7 +21,7 @@ class LookupEntryInfo(val id: Int, val length: Int, val hash: Int, val relevance // returns null if no difference found fun calculateDiff(newValue: LookupEntryInfo): LookupEntryDiff? { assert(id == newValue.id) { "Could not compare infos for different lookup elements" } - assert(hash == newValue.hash) { "Hashes of elements with the same ids should be the same" } + //assert(hash == newValue.hash) { "Hashes of elements with the same ids should be the same" } // lookupString is not actually stable if (this === newValue) return null if (relevance == null && newValue.relevance == null) { return null