diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-04-19 17:21:18 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-04-19 17:21:18 -0700 |
| commit | aeb97482e923b5c441dd59e3ca4a7e275ac2b4c2 (patch) | |
| tree | bf6124b8dc1ae9e06b9328f4e22495fe51289232 /hotline/file_store.go | |
| parent | 548d4bb93fe32d24b3fbc491a01e5c6127be9289 (diff) | |
Ran 'golangci-lint run -E gocritic,whitespace --fix' 🤞
Diffstat (limited to 'hotline/file_store.go')
| -rw-r--r-- | hotline/file_store.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hotline/file_store.go b/hotline/file_store.go index 3c46fae..1525e2e 100644 --- a/hotline/file_store.go +++ b/hotline/file_store.go @@ -80,7 +80,6 @@ func (mfs *MockFileStore) Stat(name string) (os.FileInfo, error) { args := mfs.Called(name) if args.Get(0) == nil { return nil, args.Error(1) - } return args.Get(0).(os.FileInfo), args.Error(1) } |