diff options
author | 2023-05-15 10:55:35 -0700 | |
---|---|---|
committer | 2023-05-15 10:55:35 -0700 | |
commit | b2a750e186f49cfcf51a0c1b1295619c470c92b5 (patch) | |
tree | 09cbe42b0f8f3307dbfe89fb23eac30c344852f4 | |
parent | dd11f02a45b9fc09eaf01afe9e94e073fd281e2a (diff) | |
download | bun-b2a750e186f49cfcf51a0c1b1295619c470c92b5.tar.gz bun-b2a750e186f49cfcf51a0c1b1295619c470c92b5.tar.zst bun-b2a750e186f49cfcf51a0c1b1295619c470c92b5.zip |
remove incorrect comment
-rw-r--r-- | src/renamer.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/renamer.zig b/src/renamer.zig index 60414e2e7..3b32511f6 100644 --- a/src/renamer.zig +++ b/src/renamer.zig @@ -214,7 +214,6 @@ pub const MinifyRenamer = struct { symbol_uses: js_ast.Part.SymbolUseMap, stable_source_indices: []const u32, ) !void { - // NOTE: This function is run in parallel. Make sure to avoid data races. var iter = symbol_uses.iterator(); while (iter.next()) |value| { try this.accumulateSymbolUseCount(top_level_symbols, value.key_ptr.*, value.value_ptr.*.count_estimate, stable_source_indices); |