Remove unused public method ui.linesWriter.Flush

This commit is contained in:
greatroar 2020-10-17 20:15:30 +02:00
parent 4ba237bb93
commit 7c0b6a82db
1 changed files with 1 additions and 5 deletions

View File

@ -74,13 +74,9 @@ func (w *lineWriter) Write(data []byte) (n int, err error) {
return n, err
}
func (w *lineWriter) Flush() error {
func (w *lineWriter) Close() error {
if w.buf.Len() > 0 {
w.print(string(append(w.buf.Bytes(), '\n')))
}
return nil
}
func (w *lineWriter) Close() error {
return w.Flush()
}