From c7095e4aabe32e6a1e0dfa54ff08b284b05fbe19 Mon Sep 17 00:00:00 2001 From: fabriciojs Date: Mon, 2 Sep 2024 08:53:46 -0300 Subject: [PATCH] remove unnecessary output --- services/updater/writeable.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/services/updater/writeable.go b/services/updater/writeable.go index d150a655..3bc7458f 100644 --- a/services/updater/writeable.go +++ b/services/updater/writeable.go @@ -3,10 +3,6 @@ package updater -import "fmt" - -func isWriteable(path string) bool { - fmt.Println("called unimplemented updater.isWriteable") - +func isWriteable(_ string) bool { return false }