Skip to content

Commit ed83440

Browse files
committed
fix go vet error: a blank import
a blank import should be only in a main or test package, or have a comment justifying it
1 parent 3dd3ab4 commit ed83440

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

apk/apk.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
_ "image/jpeg"
16-
_ "image/png"
17-
1815
"github.com/pkg/errors"
1916
"github.com/shogo82148/androidbinary"
2017
)

apk/apk_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package apk
22

33
import (
4+
_ "image/jpeg"
5+
_ "image/png"
46
"testing"
57

68
"github.com/stretchr/testify/assert"

0 commit comments

Comments
 (0)