Skip to content

Commit a0a10f7

Browse files
committed
fix typo
1 parent 596a06d commit a0a10f7

File tree

2 files changed

+1
-4
lines changed
  • plugins/amazonq
    • chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview
    • shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat

2 files changed

+1
-4
lines changed

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/BrowserConnector.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,9 +500,6 @@ class BrowserConnector(
500500
encryptionManager?.decrypt(value).orEmpty(),
501501
isPartialResult = false
502502
)
503-
if (messageToChat.contains("abc")) {
504-
throw Exception("abc err")
505-
}
506503
browser.postChat(messageToChat)
507504
chatCommunicationManager.removeInflightRequestForTab(tabId)
508505
} catch (e: Exception) {

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat/ErrorParams.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.chat
66
import org.eclipse.lsp4j.TextDocumentIdentifier
77

88
data class ErrorParams(
9-
val tabID: String,
9+
val tabId: String,
1010
val triggerType: String?,
1111
val message: String,
1212
val title: String

0 commit comments

Comments
 (0)