Skip to content

Commit a5044f4

Browse files
committed
fix linter
1 parent bc1256b commit a5044f4

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

packages/core/src/amazonq/lsp/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ export const GetContextCommandItemsRequestType: RequestType<GetContextCommandIte
8383
'lsp/getContextCommandItems'
8484
)
8585

86-
export type GetIndexSequenceNumberRequestPayload = {}
8786
export type GetIndexSequenceNumberRequest = string
8887
export const GetIndexSequenceNumberRequestType: RequestType<GetRepomapIndexJSONRequest, any, any> = new RequestType(
8988
'lsp/getIndexSequenceNumber'

packages/core/src/codewhispererChat/app.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,7 @@ export function init(appContext: AmazonQAppInitContext) {
116116
processContextSelected: new MessageListener<ContextSelectedMessage>(
117117
cwChatControllerEventEmitters.processContextSelected
118118
),
119-
processFileClick: new MessageListener<FileClick>(
120-
cwChatControllerEventEmitters.processFileClick
121-
),
119+
processFileClick: new MessageListener<FileClick>(cwChatControllerEventEmitters.processFileClick),
122120
}
123121

124122
const cwChatControllerMessagePublishers = {
@@ -181,9 +179,7 @@ export function init(appContext: AmazonQAppInitContext) {
181179
processContextSelected: new MessagePublisher<ContextSelectedMessage>(
182180
cwChatControllerEventEmitters.processContextSelected
183181
),
184-
processFileClick: new MessagePublisher<FileClick>(
185-
cwChatControllerEventEmitters.processFileClick
186-
),
182+
processFileClick: new MessagePublisher<FileClick>(cwChatControllerEventEmitters.processFileClick),
187183
}
188184

189185
new CwChatController(

0 commit comments

Comments
 (0)