diff options
author | 2022-11-27 06:18:05 -0800 | |
---|---|---|
committer | 2022-11-27 06:18:05 -0800 | |
commit | e8d948b9d94a7300086868c392bb1a3faa84e9b0 (patch) | |
tree | afb4f62fd1afa9d6326a27235e4c773e10be172c | |
parent | f891d1df5006760c19ab997ec9baa6a8071885b6 (diff) | |
download | bun-e8d948b9d94a7300086868c392bb1a3faa84e9b0.tar.gz bun-e8d948b9d94a7300086868c392bb1a3faa84e9b0.tar.zst bun-e8d948b9d94a7300086868c392bb1a3faa84e9b0.zip |
Remove extra indent
-rw-r--r-- | src/bun.js/webcore/response.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bun.js/webcore/response.zig b/src/bun.js/webcore/response.zig index 2617fed9e..1d3681b75 100644 --- a/src/bun.js/webcore/response.zig +++ b/src/bun.js/webcore/response.zig @@ -1017,8 +1017,6 @@ pub const Blob = struct { pub fn writeFormat(this: *const Blob, formatter: *JSC.Formatter, writer: anytype, comptime enable_ansi_colors: bool) !void { const Writer = @TypeOf(writer); - try formatter.writeIndent(Writer, writer); - if (this.isDetached()) { try writer.writeAll(comptime Output.prettyFmt("<d>[<r>Blob<r> detached<d>]<r>", enable_ansi_colors)); return; |