diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-04 17:50:27 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-04 17:50:27 -0400 |
| commit | 3a130b756a74c24ea34a1d25a86c96c72da2d80f (patch) | |
| tree | 23073c0181b915133c044afcb081a33df9187665 /objc_darwin.go | |
| parent | 1a7bf4cd8974bc116df17bccd908187a767d7e6e (diff) | |
Removed objc_new(). The idea is to remove all the objc_* functions that aren't prefixed with C. (except objc_getClass()).
Diffstat (limited to 'objc_darwin.go')
| -rw-r--r-- | objc_darwin.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/objc_darwin.go b/objc_darwin.go index 76fbb54..8f8ef2c 100644 --- a/objc_darwin.go +++ b/objc_darwin.go @@ -43,10 +43,6 @@ func objc_alloc(class C.id) C.id { return C.objc_msgSend_noargs(class, _alloc) } -func objc_new(class C.id) C.id { - return C.objc_msgSend_noargs(class, _new) -} - func objc_release(obj C.id) { C.objc_msgSend_noargs(obj, _release) } |
