Commit dce08d9a57

Andrew Kelley <andrew@ziglang.org>
2025-07-10 03:46:58
std.Build.Cache: remove debugging remnants
oops!
1 parent 55bced9
Changed files (1)
lib
std
Build
lib/std/Build/Cache.zig
@@ -690,11 +690,7 @@ pub const Manifest = struct {
             const size = iter.next() orelse return error.InvalidFormat;
             const inode = iter.next() orelse return error.InvalidFormat;
             const mtime_nsec_str = iter.next() orelse return error.InvalidFormat;
-            const digest_str = iter.next() orelse {
-                std.debug.print("contents:\n{s}\n", .{file_contents});
-                @breakpoint();
-                return error.InvalidFormat;
-            };
+            const digest_str = iter.next() orelse return error.InvalidFormat;
             const prefix_str = iter.next() orelse return error.InvalidFormat;
             const file_path = iter.rest();