1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibWeb: Remove dbgln() left from debugging :^)

This commit is contained in:
Linus Groh 2021-12-14 08:58:13 +00:00
parent ac7953f945
commit 69fe4c2aca

View file

@ -115,7 +115,6 @@ Optional<ByteBuffer> get_buffer_source_copy(JS::Object const& buffer_source)
// 9. For i in the range offset to offset + length 1, inclusive, set bytes[i offset] to ! GetValueFromBuffer(esArrayBuffer, i, Uint8, true, Unordered).
for (u64 i = offset; i <= offset + length - 1; ++i) {
auto value = es_array_buffer->get_value<u8>(i, true, JS::ArrayBuffer::Unordered);
dbgln("value at i = {} is {}", i, value);
(*bytes)[i - offset] = (u8)value.as_u32();
}