diff --git a/Objective-J/ObjJAcornCompiler.js b/Objective-J/ObjJAcornCompiler.js index 961c3f06d..b6b279970 100644 --- a/Objective-J/ObjJAcornCompiler.js +++ b/Objective-J/ObjJAcornCompiler.js @@ -584,7 +584,7 @@ ProtocolDef.prototype.getClassMethod = function(name) { for (var i = 0, size = protocols.length; i < size; i++) { var protocol = protocols[i], - method = protocol.getInstanceMethod(name); + method = protocol.getClassMethod(name); if (method) return method;