From 141d737ca5fbe1c7b650e7cda25fc9b7a545f535 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Fri, 20 Nov 2015 14:54:11 +0100 Subject: [PATCH] Fixed: Removed old function instead of mark it deprecated --- Objective-J/Runtime.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Objective-J/Runtime.js b/Objective-J/Runtime.js index d435455e0..a97fa0e48 100644 --- a/Objective-J/Runtime.js +++ b/Objective-J/Runtime.js @@ -1020,14 +1020,6 @@ GLOBAL(method_getName) = function(/*Method*/ aMethod) return aMethod.method_name; } -// FIXME: This function is deprecated and should be removed in a future release -// Please use 'method_copyReturnType' or 'method_copyArgumentType' -GLOBAL(method_getTypes) = function(/*Method*/ aMethod) -{ - console.warn("Runtime function 'method_getTypes' is deprecated. Please use function 'method_copyReturnType' or 'method_copyArgumentType'"); - return aMethod.method_types; -} - GLOBAL(method_copyReturnType) = function(/*Method*/ aMethod) { var types = aMethod.method_types;