1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:58:12 +00:00

GIODevice: Remove debug spam.

This commit is contained in:
Andreas Kling 2019-03-18 15:36:16 +01:00
parent 9ad076178a
commit a319641fc4

View file

@ -131,7 +131,6 @@ ByteBuffer GIODevice::read_line(int max_size)
m_buffered_data = move(new_buffered_data);
line[line_index] = '\0';
line.trim(line_index + 1);
dbgprintf("GIODevice::read_line: '%s'\n", line.pointer());
return line;
}
}