From: Jay Freeman (saurik) Date: Fri, 14 Sep 2012 14:13:50 +0000 (-0700) Subject: We can assume that Instance() will never wrap nil. X-Git-Tag: v0.9.460~20 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/6635fb6ce2e1d27090249a65d0f4f21900f629d9?ds=inline We can assume that Instance() will never wrap nil. --- diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 44eb057..7444159 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -2406,9 +2406,6 @@ static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjec Instance *internal(reinterpret_cast(JSObjectGetPrivate(_this))); id value(internal->GetValue()); - if (value == nil) - return CYCastJSValue(context, "nil"); - CYPoolTry { // XXX: this seems like a stupid implementation; what if it crashes? why not use the CYONifier backend? return CYCastJSValue(context, CYJSString(context, [value description]));