mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 03:02:27 -05:00
GIODevice: Remove accidentally committed debug spam.
This commit is contained in:
parent
51b4d3fe5a
commit
31b9d8354e
Notes:
sideshowbarker
2024-07-19 14:47:49 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/31b9d8354e3
1 changed files with 3 additions and 12 deletions
|
@ -109,18 +109,12 @@ ByteBuffer GIODevice::read_all()
|
|||
|
||||
ByteBuffer GIODevice::read_line(int max_size)
|
||||
{
|
||||
if (m_fd < 0) {
|
||||
printf("nofd\n");
|
||||
if (m_fd < 0)
|
||||
return { };
|
||||
}
|
||||
if (!max_size) {
|
||||
printf("noms\n");
|
||||
if (!max_size)
|
||||
return { };
|
||||
}
|
||||
if (!can_read_line()) {
|
||||
printf("norl\n");
|
||||
if (!can_read_line())
|
||||
return { };
|
||||
}
|
||||
if (m_eof) {
|
||||
if (m_buffered_data.size() > max_size) {
|
||||
printf("GIODevice::read_line: At EOF but there's more than max_size(%d) buffered\n", max_size);
|
||||
|
@ -134,7 +128,6 @@ ByteBuffer GIODevice::read_line(int max_size)
|
|||
int line_index = 0;
|
||||
while (line_index < max_size) {
|
||||
byte ch = m_buffered_data[line_index];
|
||||
printf("%c", ch);
|
||||
line[line_index++] = ch;
|
||||
if (ch == '\n') {
|
||||
Vector<byte> new_buffered_data;
|
||||
|
@ -142,11 +135,9 @@ ByteBuffer GIODevice::read_line(int max_size)
|
|||
m_buffered_data = move(new_buffered_data);
|
||||
line[line_index] = '\0';
|
||||
line.trim(line_index + 1);
|
||||
printf("\n");
|
||||
return line;
|
||||
}
|
||||
}
|
||||
printf("\nnowork\n");
|
||||
return { };
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue