Code cleanup

This commit is contained in:
Noah Campbell
2013-10-01 19:59:35 -07:00
parent 19cb6c7819
commit 689cda1740
4 changed files with 10 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
package transform
import (
"io"
"bytes"
"io"
)
type chain struct {
@@ -23,7 +23,7 @@ func (c *chain) Apply(w io.Writer, r io.Reader) (err error) {
}
in = bytes.NewBuffer(out.Bytes())
}
_, err = io.Copy(w, in)
return
}