Skip to content

Commit

Permalink
Remove unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwiz committed Mar 3, 2025
1 parent 69d0321 commit e2dcff9
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions internal/endpoint/pop3/pop3.go
Original file line number Diff line number Diff line change
Expand Up @@ -444,23 +444,6 @@ func (endp *Endpoint) Unlock(user pop3backend.User) error {
return backendUser.Logout()
}

func (endp *Endpoint) I18NLevel() int {
be, ok := endp.Store.(i18nlevel.Backend)
if !ok {
return 0
}
return be.I18NLevel()
}

func (endp *Endpoint) SupportedThreadAlgorithms() []sortthread.ThreadAlgorithm {
be, ok := endp.Store.(sortthread.ThreadBackend)
if !ok {
return nil
}

return be.SupportedThreadAlgorithms()
}

func init() {
module.RegisterEndpoint("pop3", New)
}

0 comments on commit e2dcff9

Please sign in to comment.