Commit da7881c
Fix conflict pair recording and validation consistency
- Record all unique pairs for N duplicates (N*(N-1)/2 pairs)
Previously: 3 duplicates → 2 pairs (A-B, B-C)
Now: 3 duplicates → 3 pairs (A-B, A-C, B-C)
- Changed validation from re.match() to re.search() for consistency
Both scanning and validation now use same matching behavior
Addresses feedback in PR review comment #2674204672 and #2674204685
Co-authored-by: AmedeoPelliccia <164860269+AmedeoPelliccia@users.noreply.github.com>1 parent 7b388c3 commit da7881c
1 file changed
+11
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
198 | | - | |
| 198 | + | |
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
| |||
268 | 268 | | |
269 | 269 | | |
270 | 270 | | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | | - | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
279 | 281 | | |
280 | 282 | | |
281 | 283 | | |
| |||
0 commit comments