Skip to content

Commit 2072ec1

Browse files
committed
[LLVM] Remove warning print when merging fails
Summary: This message is only confusing and shouldn't have been added in the first place.
1 parent b4c1ded commit 2072ec1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/utils/merge-json.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def main():
3333
data = json.load(f)
3434
merged_data.extend(data)
3535
except (IOError, json.JSONDecodeError) as e:
36-
print("Failed to parse {json_file}: {e}", file=sys.stderr)
3736
continue
3837

3938
# Deduplicate by converting each entry to a tuple of sorted key-value pairs

0 commit comments

Comments
 (0)