@agi-cli/sdk 0.1.82 → 0.1.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -234,10 +234,10 @@ function isHunkAlreadyApplied(
|
|
|
234
234
|
}
|
|
235
235
|
|
|
236
236
|
const removals = hunk.lines.filter((line) => line.kind === 'remove');
|
|
237
|
-
const
|
|
237
|
+
const _additions = hunk.lines
|
|
238
238
|
.filter((line) => line.kind === 'add')
|
|
239
239
|
.map((line) => line.content);
|
|
240
|
-
const
|
|
240
|
+
const _contextLines = hunk.lines
|
|
241
241
|
.filter((line) => line.kind === 'context')
|
|
242
242
|
.map((line) => line.content);
|
|
243
243
|
if (removals.length === 0) return false;
|