[LLVM] Remove warning print when merging fails

Summary:
This message is only confusing and shouldn't have been added in the
first place.
This commit is contained in:
Joseph Huber
2024-12-17 07:43:33 -06:00
parent b4c1ded7d5
commit 2072ec1ff9

View File

@@ -33,7 +33,6 @@ def main():
data = json.load(f)
merged_data.extend(data)
except (IOError, json.JSONDecodeError) as e:
print("Failed to parse {json_file}: {e}", file=sys.stderr)
continue
# Deduplicate by converting each entry to a tuple of sorted key-value pairs