Fix none readfrom

This commit is contained in:
世界 2022-06-06 10:03:23 +08:00
parent 1e22882ea8
commit b941e76915
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 13 additions and 9 deletions

View file

@ -362,14 +362,6 @@ type BufferedWriter struct {
index int
}
func (w *BufferedWriter) UpstreamWriter() io.Writer {
return w.upstream
}
func (w *BufferedWriter) WriterReplaceable() bool {
return w.index == 0
}
func (w *BufferedWriter) Write(p []byte) (n int, err error) {
var index int
for {