From 4216fd0de3a86b380e4aab9fde7acdc137d89fe9 Mon Sep 17 00:00:00 2001 From: Stig Brautaset Date: Fri, 31 Dec 2010 15:13:58 +0000 Subject: [PATCH] use @dynamic rather than @synthesize when manually implementing setter (reported by Andy Warwick) --- Classes/SBJsonStreamParser.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/SBJsonStreamParser.m b/Classes/SBJsonStreamParser.m index b0fcd28b..b6315a12 100644 --- a/Classes/SBJsonStreamParser.m +++ b/Classes/SBJsonStreamParser.m @@ -40,7 +40,7 @@ @implementation SBJsonStreamParser @synthesize multi; @synthesize error; @synthesize delegate; -@synthesize maxDepth; +@dynamic maxDepth; @synthesize states; @synthesize depth;