From: Jay Freeman (saurik) <saurik@saurik.com>
Date: Thu, 2 Jan 2014 05:36:41 +0000 (-0800)
Subject: Remove an obsolete JavaScript exception bracket.
X-Git-Tag: v0.9.500~114
X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/22c18a12d8b17537cacc7fae69274d2ec4ee8a5a?ds=sidebyside

Remove an obsolete JavaScript exception bracket.
---

diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm
index 3a34f3e..2a2d07e 100644
--- a/ObjectiveC/Library.mm
+++ b/ObjectiveC/Library.mm
@@ -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