diff options
author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2022-03-06 15:46:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 15:46:21 +0800 |
commit | 3acc13038dfe5e0643112140d329c6eb0ed4cd6a (patch) | |
tree | 7205f5757e00f509670cbd61e7b01dfaf8092f11 /internal/route/user/profile.go | |
parent | ab96a4f0d840987797e79ec7e3a4b02a7b6880e7 (diff) |
autofix: unused parameter should be replaced by underscore (#6799)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/route/user/profile.go')
-rw-r--r-- | internal/route/user/profile.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/route/user/profile.go b/internal/route/user/profile.go index 89d84509..3baee4e3 100644 --- a/internal/route/user/profile.go +++ b/internal/route/user/profile.go @@ -99,8 +99,7 @@ func Following(c *context.Context, puser *context.ParamsUser) { repo.RenderUserCards(c, puser.NumFollowing, puser.GetFollowing, FOLLOWERS) } -func Stars(c *context.Context) { - +func Stars(_ *context.Context) { } func Action(c *context.Context, puser *context.ParamsUser) { |