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/reverseproxy.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/reverseproxy.go')
-rw-r--r-- | services/auth/reverseproxy.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/services/auth/reverseproxy.go b/services/auth/reverseproxy.go index 3574e660b8..62e60ccdc1 100644 --- a/services/auth/reverseproxy.go +++ b/services/auth/reverseproxy.go @@ -20,7 +20,6 @@ import ( // Ensure the struct implements the interface. var ( _ Method = &ReverseProxy{} - _ Named = &ReverseProxy{} ) // ReverseProxyMethodName is the constant name of the ReverseProxy authentication method |