Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed May 30, 2023
1 parent b51c186 commit 28d9618
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions internal/print/textprint/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ type tableWriter[T any] struct {
orderBy func(T, T) bool
}

func (t *tableWriter[T]) WriteOne(value T) error {
_, err := t.Write([]T{value})
return err
}

func (t *tableWriter[T]) Write(values []T) (int, error) {
t.values = append(t.values, values...)
return len(values), nil
Expand Down

0 comments on commit 28d9618

Please sign in to comment.