Skip to content

Commit e56a789

Browse files
committed
remove console log
1 parent ca3848f commit e56a789

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/core/src/codewhispererChat/controllers/chat/controller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,6 @@ export class ChatController {
961961
const currentContext = session.contexts.get(session.currentContextId)
962962
if (currentContext) {
963963
currentContext.set(doc.relativeFilePath, doc.lineRanges)
964-
console.log(doc.relativeFilePath)
965964
}
966965
})
967966

packages/core/src/codewhispererChat/controllers/chat/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export interface TriggerPayload {
200200

201201
export interface MergedRelevantDocument {
202202
readonly relativeFilePath: string
203-
readonly lineRanges: Array<{ first: number; second: number }> // Equivalent to List<Pair<Int, Int>> in Kotlin
203+
readonly lineRanges: Array<{ first: number; second: number }>
204204
}
205205

206206
export interface InsertedCode {

0 commit comments

Comments
 (0)