1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:27:34 +00:00

GIODevice: Remove accidentally committed debug spam.

This commit is contained in:
Andreas Kling 2019-04-07 20:18:58 +02:00
parent 51b4d3fe5a
commit 31b9d8354e

View file

@ -109,18 +109,12 @@ ByteBuffer GIODevice::read_all()
ByteBuffer GIODevice::read_line(int max_size) ByteBuffer GIODevice::read_line(int max_size)
{ {
if (m_fd < 0) { if (m_fd < 0)
printf("nofd\n");
return { }; return { };
} if (!max_size)
if (!max_size) {
printf("noms\n");
return { }; return { };
} if (!can_read_line())
if (!can_read_line()) {
printf("norl\n");
return { }; return { };
}
if (m_eof) { if (m_eof) {
if (m_buffered_data.size() > max_size) { 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); 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; int line_index = 0;
while (line_index < max_size) { while (line_index < max_size) {
byte ch = m_buffered_data[line_index]; byte ch = m_buffered_data[line_index];
printf("%c", ch);
line[line_index++] = ch; line[line_index++] = ch;
if (ch == '\n') { if (ch == '\n') {
Vector<byte> new_buffered_data; Vector<byte> new_buffered_data;
@ -142,11 +135,9 @@ ByteBuffer GIODevice::read_line(int max_size)
m_buffered_data = move(new_buffered_data); m_buffered_data = move(new_buffered_data);
line[line_index] = '\0'; line[line_index] = '\0';
line.trim(line_index + 1); line.trim(line_index + 1);
printf("\n");
return line; return line;
} }
} }
printf("\nnowork\n");
return { }; return { };
} }