diff options
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/lulu/indent_tab_writer.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/lulu/indent_tab_writer.go b/cmd/lulu/indent_tab_writer.go index 102cb33..b5cde97 100644 --- a/cmd/lulu/indent_tab_writer.go +++ b/cmd/lulu/indent_tab_writer.go @@ -26,9 +26,7 @@ func newIndentTabWriter(w io.Writer, tabwriterFlags uint) *indentTabWriter { func (w *indentTabWriter) Write(p []byte) (n int, err error) { return w.tabw.Write(p) } -func (w *indentTabWriter) Flush() error { - return w.tabw.Flush() -} +func (w *indentTabWriter) Flush() error { return w.tabw.Flush() } func (w *indentTabWriter) Indent() error { if err := w.tabw.Flush(); err != nil { |