Skip to content

Commit 5ffc7ca

Browse files
committed
REMOVE AGAIN.
1 parent 93d0f36 commit 5ffc7ca

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config/sync-files.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,12 @@ def accept_prefix(line1, line2):
6363
return not suffix or suffix.lstrip().startswith("//")
6464

6565
def equivalent_lines(lines1, lines2):
66+
print("check equivalent lines")
6667
if len(lines1) != len(lines2):
6768
return False
6869
for line1, line2 in zip(lines1, lines2):
70+
print("line1", line1)
71+
print("line2", line2)
6972
if not accept_prefix(line1, line2) and not accept_prefix(line2, line1):
7073
return False
7174
return True

0 commit comments

Comments
 (0)