Skip to content

Commit

Permalink
stop printing request method to stderr when is called (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik2804 authored Jan 24, 2025
1 parent ca8fee8 commit 269e4fb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion builtins/web/fetch/request-response.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,6 @@ bool Request::clone(JSContext *cx, unsigned argc, JS::Value *vp) {
Value url_val = GetReservedSlot(self, static_cast<uint32_t>(Slots::URL));
SetReservedSlot(new_request, static_cast<uint32_t>(Slots::URL), url_val);
Value method_val = JS::StringValue(method(self));
ENGINE->dump_value(method_val, stderr);
SetReservedSlot(new_request, static_cast<uint32_t>(Slots::Method), method_val);

// clone operation step 2.
Expand Down

0 comments on commit 269e4fb

Please sign in to comment.