[Process] Remove Groups() from process_openbsd

This commit is contained in:
TakayukiB Goto 2019-12-06 11:10:18 +09:00
parent 9c6cedb822
commit 7306b38ac6
1 changed files with 0 additions and 4 deletions

View File

@ -204,10 +204,6 @@ func (p *Process) GidsWithContext(ctx context.Context) ([]int32, error) {
return gids, nil
}
func (p *Process) Groups() ([]int32, error) {
return p.GroupsWithContext(context.Background())
}
func (p *Process) GroupsWithContext(ctx context.Context) ([]int32, error) {
k, err := p.getKProc()
if err != nil {