From 672a9d9f8f00aeb8003e620690f25d79293a7fff Mon Sep 17 00:00:00 2001 From: Max Medvedev Date: Wed, 24 Dec 2025 16:40:31 +0100 Subject: [PATCH] doc [completion]: add a doc comment GitOrigin-RevId: a2bea8b494d2190f003bf3a151294ca741604505 --- .../src/com/intellij/codeInsight/lookup/impl/LookupImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform/lang-impl/src/com/intellij/codeInsight/lookup/impl/LookupImpl.java b/platform/lang-impl/src/com/intellij/codeInsight/lookup/impl/LookupImpl.java index bc17e2c3108c..9f877e1a16b6 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/lookup/impl/LookupImpl.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/lookup/impl/LookupImpl.java @@ -264,6 +264,10 @@ public class LookupImpl extends LightweightHint implements LookupEx, Disposable, } } + /** + * let LookupImpl know that user changed selected element + * @see #isSelectionTouched() + */ public void markSelectionTouched() { if (!ApplicationManager.getApplication().isUnitTestMode()) { ThreadingAssertions.assertEventDispatchThread();