diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-08 16:17:15 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-08 16:17:15 +0100 |
commit | 97bc5ccd229b7b438262a84e3c42783b4d4a82af (patch) | |
tree | 6e5ef89c8ecce28599e9623d441a18406b2f2f93 /bug/interface.go | |
parent | 77dc783fcb64adf67d10fc3232c4f06f8e3d5392 (diff) | |
download | git-bug-97bc5ccd229b7b438262a84e3c42783b4d4a82af.tar.gz |
various cleanups suggested by golang-ci
Diffstat (limited to 'bug/interface.go')
-rw-r--r-- | bug/interface.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/interface.go b/bug/interface.go index 796ee569..5c8f2729 100644 --- a/bug/interface.go +++ b/bug/interface.go @@ -46,11 +46,11 @@ type Interface interface { } func bugFromInterface(bug Interface) *Bug { - switch bug.(type) { + switch bug := bug.(type) { case *Bug: - return bug.(*Bug) + return bug case *WithSnapshot: - return bug.(*WithSnapshot).Bug + return bug.Bug default: panic("missing type case") } |