mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Delete unused BufferPolicy from fetch Request
This is no longer needed since all requests are unbuffered.
This commit is contained in:
parent
16b0f1e6c2
commit
0eb28a1a54
Notes:
github-actions[bot]
2025-11-20 11:30:41 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 0eb28a1a54
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6839
Reviewed-by: https://github.com/trflynn89 ✅
3 changed files with 0 additions and 17 deletions
|
|
@ -264,7 +264,6 @@ GC::Ref<Request> Request::clone(JS::Realm& realm) const
|
|||
new_request->set_prevent_no_cache_cache_control_header_modification(m_prevent_no_cache_cache_control_header_modification);
|
||||
new_request->set_done(m_done);
|
||||
new_request->set_timing_allow_failed(m_timing_allow_failed);
|
||||
new_request->set_buffer_policy(m_buffer_policy);
|
||||
|
||||
// 2. If request’s body is non-null, set newRequest’s body to the result of cloning request’s body.
|
||||
if (auto const* body = m_body.get_pointer<GC::Ref<Body>>())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue