diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-18 15:36:16 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-18 15:36:16 +0100 |
commit | a319641fc45ae44d23fc0058b70f172d8bb8f693 (patch) | |
tree | ef2562e2bfca7f0cdbd677a461b7d75f57433eb7 /LibGUI | |
parent | 9ad076178a4bb13436e2edf90e62a26fb2cf32ea (diff) | |
download | serenity-a319641fc45ae44d23fc0058b70f172d8bb8f693.zip |
GIODevice: Remove debug spam.
Diffstat (limited to 'LibGUI')
-rw-r--r-- | LibGUI/GIODevice.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/LibGUI/GIODevice.cpp b/LibGUI/GIODevice.cpp index 7be5bcd09f..988278c411 100644 --- a/LibGUI/GIODevice.cpp +++ b/LibGUI/GIODevice.cpp @@ -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; } } |