Skip to content

Commit 05c0cf9

Browse files
committed
fix unused-receiver
1 parent 935f79f commit 05c0cf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/database/dbcrypt/cipher.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (e *DecryptFailedError) Error() string {
2626
return xerrors.Errorf("decrypt failed: %w", e.Inner).Error()
2727
}
2828

29-
func (e *DecryptFailedError) Unwrap() error {
29+
func (*DecryptFailedError) Unwrap() error {
3030
return sql.ErrNoRows
3131
}
3232

0 commit comments

Comments
 (0)