From 8b07016b6e78fa4fa025652ce51ca4624c79bed1 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 10 Oct 2015 13:41:26 -0400 Subject: [PATCH] Remove StackFrame.routingID. --- Source/DebuggerBackEnd.m | 1 - Source/StackFrame.h | 6 ------ Source/StackFrame.m | 1 - 3 files changed, 8 deletions(-) diff --git a/Source/DebuggerBackEnd.m b/Source/DebuggerBackEnd.m index 05f0dce..32a0e15 100644 --- a/Source/DebuggerBackEnd.m +++ b/Source/DebuggerBackEnd.m @@ -395,7 +395,6 @@ frame.filename = [[xmlframe attributeForName:@"filename"] stringValue]; frame.lineNumber = [[[xmlframe attributeForName:@"lineno"] stringValue] intValue]; frame.function = [[xmlframe attributeForName:@"where"] stringValue]; - frame.routingID = receivedTransaction; // Only get the complete frame for the first level. The other frames will get // information loaded lazily when the user clicks on one. diff --git a/Source/StackFrame.h b/Source/StackFrame.h index b550f95..01964b5 100644 --- a/Source/StackFrame.h +++ b/Source/StackFrame.h @@ -23,11 +23,6 @@ */ BOOL loaded_; - /** - * The routing ID used to receive response information from the engine. - */ - NSUInteger routingID_; - /** * The position in the stack */ @@ -60,7 +55,6 @@ } @property BOOL loaded; -@property NSUInteger routingID; @property (readwrite) NSUInteger index; @property (copy) NSString* filename; @property (copy) NSString* source; diff --git a/Source/StackFrame.m b/Source/StackFrame.m index 354d90f..8c01f27 100644 --- a/Source/StackFrame.m +++ b/Source/StackFrame.m @@ -19,7 +19,6 @@ @implementation StackFrame @synthesize loaded = loaded_; -@synthesize routingID = routingID_; @synthesize index = index_; @synthesize filename = filename_; @synthesize source = source_; -- 2.22.5