summaryrefslogtreecommitdiffstats
path: root/client/go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go')
-rw-r--r--client/go/util/spinner.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/client/go/util/spinner.go b/client/go/util/spinner.go
index 721bc7f5fd0..e18b12e8f35 100644
--- a/client/go/util/spinner.go
+++ b/client/go/util/spinner.go
@@ -25,10 +25,6 @@ func Spinner(text string, fn func() error) error {
return loading(initialMsg, doneMsg, failMsg, fn)
}
-func Waiting(fn func() error) error {
- return loading("", "", "", fn)
-}
-
func loading(initialMsg, doneMsg, failMsg string, fn func() error) error {
done := make(chan struct{})
errc := make(chan error)