diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2023-09-05 17:58:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 15:58:30 +0000 |
commit | 0eebeeec9045c759d005ab0ba87f3275da7c627d (patch) | |
tree | a8ca74d22821ff8002781cf9d5c21ebaa0001010 /services/auth/basic.go | |
parent | a99b96cbcd10e4cad3194c142a0fffe371959455 (diff) | |
download | gitea-0eebeeec9045c759d005ab0ba87f3275da7c627d.tar.gz gitea-0eebeeec9045c759d005ab0ba87f3275da7c627d.zip |
Remove `Named` interface (#26913)
`Named` is implemented by every `Method` and future implementations
should implement the method too.
Diffstat (limited to 'services/auth/basic.go')
-rw-r--r-- | services/auth/basic.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/services/auth/basic.go b/services/auth/basic.go index 36480568ff..ea8df3d0ea 100644 --- a/services/auth/basic.go +++ b/services/auth/basic.go @@ -21,7 +21,6 @@ import ( // Ensure the struct implements the interface. var ( _ Method = &Basic{} - _ Named = &Basic{} ) // BasicMethodName is the constant name of the basic authentication method |