refactor(resizer): remove fmt statement

This commit is contained in:
Tomas Aparicio 2017-11-14 11:44:51 +01:00
parent 1f5f95c3c8
commit 0885d7e93e

View file

@ -90,7 +90,6 @@ func resizer(buf []byte, o Options) ([]byte, error) {
}
// Transform image, if necessary
fmt.Printf("should transform: %#v", shouldTransformImage(o, inWidth, inHeight))
if shouldTransformImage(o, inWidth, inHeight) {
image, err = transformImage(image, o, shrink, residual)
if err != nil {