From 3a130b756a74c24ea34a1d25a86c96c72da2d80f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 4 Apr 2014 17:50:27 -0400 Subject: Removed objc_new(). The idea is to remove all the objc_* functions that aren't prefixed with C. (except objc_getClass()). --- objc_darwin.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'objc_darwin.go') 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) } -- cgit v1.2.3