From 29dab46261b3e9b93d61fd92bce2c3b1a671c33e Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Sun, 10 Apr 2016 02:51:12 -0400
Subject: [PATCH] Remove unnecessary @synthesize directives from StackFrame and
 VariableNode.

---
 Source/StackFrame.m   |  8 --------
 Source/VariableNode.m | 10 +---------
 2 files changed, 1 insertion(+), 17 deletions(-)

diff --git a/Source/StackFrame.m b/Source/StackFrame.m
index dbe5c1a..49be5c2 100644
--- a/Source/StackFrame.m
+++ b/Source/StackFrame.m
@@ -18,14 +18,6 @@
 
 @implementation StackFrame
 
-@synthesize loaded;
-@synthesize index;
-@synthesize filename;
-@synthesize source;
-@synthesize lineNumber;
-@synthesize function;
-@synthesize variables;
-
 - (void)dealloc {
   self.filename = nil;
   self.source = nil;
diff --git a/Source/VariableNode.m b/Source/VariableNode.m
index 80a62f4..5cc17da 100644
--- a/Source/VariableNode.m
+++ b/Source/VariableNode.m
@@ -22,14 +22,6 @@
   NSMutableArray* _children;
 }
 
-@synthesize name = _name;
-@synthesize fullName = _fullName;
-@synthesize className = _className;
-@synthesize type = _type;
-@synthesize value = _value;
-@synthesize childCount = _childCount;
-@synthesize address = _address;
-
 - (id)initWithXMLNode:(NSXMLElement*)node {
   if (self = [super init]) {
     _name       = [[[node attributeForName:@"name"] stringValue] copy];
@@ -67,7 +59,7 @@
     // Other child nodes may be the string value.
     if ([child isKindOfClass:[NSXMLElement class]]) {
       VariableNode* node = [[VariableNode alloc] initWithXMLNode:(NSXMLElement*)child];
-      // Don't include the CLASSNAME property as that information is retreeived
+      // Don't include the CLASSNAME property as that information is retrieved
       // elsewhere.
       if (![node.name isEqualToString:@"CLASSNAME"])
         [_children addObject:node];
-- 
2.43.5