From 0399b3daeda48760471a36d0cbfec578b2b2679a Mon Sep 17 00:00:00 2001 From: Andrew Hankinson Date: Sat, 1 Nov 2014 07:41:51 -0400 Subject: [PATCH] Fixed: Renamed CPCoder method to match language Previously CPCoder had a method named "encodeValueOfObjCType" which is a misnomer. This commit renames the method to "encodeValueOfObjJType." --- Foundation/CPCoder.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CPCoder.j b/Foundation/CPCoder.j index d02d918e0..0bdc7b89a 100644 --- a/Foundation/CPCoder.j +++ b/Foundation/CPCoder.j @@ -53,7 +53,7 @@ @param aType the structure or object type @param anObject the object to be encoded */ -- (void)encodeValueOfObjCType:(CPString)aType at:(id)anObject +- (void)encodeValueOfObjJType:(CPString)aType at:(id)anObject { _CPRaiseInvalidAbstractInvocation(self, _cmd); }