You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQChatServer.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/editor/ActiveEditorChangeListener.kt
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ class ActiveEditorChangeListener(
28
28
privatevalexecutor:ScheduledExecutorService,
29
29
) : Disposable {
30
30
privatevar debounceTask:ScheduledFuture<*>?=null
31
-
privatevalDEBOUNCE_DELAY_MS=100L
31
+
privatevaldebounceDelayMs=100L
32
32
33
33
init {
34
34
val connection = project.messageBus.connect(this)
@@ -63,7 +63,7 @@ class ActiveEditorChangeListener(
63
63
} catch (e:Exception) {
64
64
LOG.warn(e) { "Failed to send active editor changed notification" }
65
65
}
66
-
}, DEBOUNCE_DELAY_MS, TimeUnit.MILLISECONDS)
66
+
}, debounceDelayMs, TimeUnit.MILLISECONDS)
67
67
}
68
68
69
69
overridefundispose() {
@@ -75,7 +75,6 @@ class ActiveEditorChangeListener(
0 commit comments