From 682794046626c152efb614fd55ab75b6e0272d54 Mon Sep 17 00:00:00 2001 From: sammyette Date: Thu, 17 Apr 2025 22:36:29 -0400 Subject: [PATCH] chore: remove print and fix formatting --- util/sink.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/util/sink.go b/util/sink.go index 4eb02a76..5abd9547 100644 --- a/util/sink.go +++ b/util/sink.go @@ -95,7 +95,6 @@ func luaSinkReadAll(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { } if s.autoFlush { - println("flushing the toilet") s.Rw.Flush() } @@ -104,8 +103,8 @@ func luaSinkReadAll(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { line, err := s.Rw.ReadString('\n') if err != nil { if err == io.EOF { - // We still want to add the data we read - lines = append(lines, line) + // We still want to add the data we read + lines = append(lines, line) break }