refactor: remove debug functionality

This commit is contained in:
Daniel Riccio
2025-01-14 18:03:03 -05:00
parent e6d3db6075
commit f696f8e0f1
2 changed files with 7 additions and 28 deletions

View File

@@ -206,7 +206,7 @@ Your diff here
const contextStr = prepareSearchString(hunk.changes)
const { index: matchPosition, confidence, strategy } = findBestMatch(contextStr, result, 0, this.confidenceThreshold)
const editResult = await applyEdit(hunk, result, matchPosition, confidence, '', this.confidenceThreshold)
const editResult = await applyEdit(hunk, result, matchPosition, confidence, this.confidenceThreshold)
if (editResult.confidence >= this.confidenceThreshold) {
result = editResult.result
} else {