]> git.saurik.com Git - cycript.git/commitdiff
Remove an obsolete JavaScript exception bracket.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 2 Jan 2014 05:36:41 +0000 (21:36 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 2 Jan 2014 05:36:41 +0000 (21:36 -0800)
ObjectiveC/Library.mm

index 3a34f3eea3d1abc9ef6243006d71b862d8b5954d..2a2d07e5a14384dc41095b1fc960d2acfe015426 100644 (file)
@@ -1219,9 +1219,7 @@ JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) { CYPoolTry {
 
 - (NSString *) cy$toCYON:(bool)objective { CYObjectiveTry {
     CYPool pool;
-    JSValueRef exception(NULL);
     const char *cyon(CYPoolCCYON(pool, context_, object_));
-    CYThrow(context_, exception);
     if (cyon == NULL)
         return [super cy$toCYON:objective];
     else