fix: renaming unused parameter

This commit is contained in:
moonD4rk
2023-04-04 20:05:32 +08:00
parent c9acb11536
commit 01bf9806e0
9 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ const (
queryFirefoxCookie = `SELECT name, value, host, path, creationTime, expiry, isSecure, isHttpOnly FROM moz_cookies`
)
func (f *FirefoxCookie) Parse(masterKey []byte) error {
func (f *FirefoxCookie) Parse(_ []byte) error {
db, err := sql.Open("sqlite3", item.TempFirefoxCookie)
if err != nil {
return err