mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
Remove obsolote revive comments
This commit is contained in:
parent
6c0509e34d
commit
6b2d9d16f8
13 changed files with 0 additions and 63 deletions
|
@ -77,9 +77,6 @@ func (s *spinner) Write(p []byte) (n int, err error) {
|
|||
return s.out.Write(p)
|
||||
}
|
||||
|
||||
// TODO: Upon changing this function, please refactor it to reduce the number of arguments to <= 5.
|
||||
//
|
||||
//revive:disable-next-line
|
||||
func spinTTY(out io.Writer, wg *sync.WaitGroup, stop *atomic.Bool, delay time.Duration, text string, showDots bool) {
|
||||
defer wg.Done()
|
||||
|
||||
|
@ -106,9 +103,6 @@ func spinTTY(out io.Writer, wg *sync.WaitGroup, stop *atomic.Bool, delay time.Du
|
|||
fmt.Fprint(out, showCursor)
|
||||
}
|
||||
|
||||
// TODO: Upon changing this function, please refactor it to reduce the number of arguments to <= 5.
|
||||
//
|
||||
//revive:disable-next-line
|
||||
func spinNoTTY(out io.Writer, wg *sync.WaitGroup, _ *atomic.Bool, _ time.Duration, text string, _ bool) {
|
||||
defer wg.Done()
|
||||
fmt.Fprintln(out, text+"...")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue