From 61e96480499ef2b20363b3b1f58b9de947facc13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 7 Aug 2024 16:08:45 +0200 Subject: [PATCH] all: Run gofumpt -l -w . --- internal/libwebp/a__encoder.go | 1 - libwebp/encode.go | 1 - 2 files changed, 2 deletions(-) diff --git a/internal/libwebp/a__encoder.go b/internal/libwebp/a__encoder.go index 0df2124..cf6db4c 100644 --- a/internal/libwebp/a__encoder.go +++ b/internal/libwebp/a__encoder.go @@ -105,7 +105,6 @@ type ( // // Any src that isn't one of *image.RGBA, *image.NRGBA, or *image.Gray // will be converted to *image.NRGBA using draw.Draw first. -// func Encode(w io.Writer, src image.Image, o webpoptions.EncodingOptions) error { config, err := encodingOptionsToCConfig(o) if err != nil { diff --git a/libwebp/encode.go b/libwebp/encode.go index 370ac61..66f7177 100644 --- a/libwebp/encode.go +++ b/libwebp/encode.go @@ -13,7 +13,6 @@ import ( // // Any src that isn't one of *image.RGBA, *image.NRGBA, or *image.Gray // will be converted to *image.NRGBA using draw.Draw first. -// func Encode(w io.Writer, src image.Image, o webpoptions.EncodingOptions) error { return libwebp.Encode(w, src, o) }