proc/native: remove dead code in nonative_darwin.go (#3637)

Removes unnecessary code from nonative_darwin.go
This commit is contained in:
Alessandro Arzilli 2024-01-18 01:31:27 +01:00 committed by GitHub
parent 4ed69d0280
commit 1b201c3184
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,7 +4,6 @@ package native
import (
"errors"
"sync"
"github.com/go-delve/delve/pkg/dwarf/op"
"github.com/go-delve/delve/pkg/proc"
@ -48,10 +47,6 @@ func registers(thread *nativeThread) (proc.Registers, error) {
panic(ErrNativeBackendDisabled)
}
func (dbp *nativeProcess) loadProcessInformation(wg *sync.WaitGroup) {
panic(ErrNativeBackendDisabled)
}
func (dbp *nativeProcess) requestManualStop() (err error) {
panic(ErrNativeBackendDisabled)
}