From 49a708b446f03778204839b4670e4c4e299477d3 Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Tue, 21 Oct 2008 00:21:30 +0200 Subject: [PATCH] PBGraphCellInfo: Remove stray data members --- PBGraphCellInfo.h | 1 - PBGraphCellInfo.m | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/PBGraphCellInfo.h b/PBGraphCellInfo.h index 61139ea..136879b 100644 --- a/PBGraphCellInfo.h +++ b/PBGraphCellInfo.h @@ -18,7 +18,6 @@ NSArray* refs; } @property(readonly) NSArray* lines; -@property(retain) NSArray* refs; @property(assign) int position, numColumns; @property(assign) char sign; diff --git a/PBGraphCellInfo.m b/PBGraphCellInfo.m index c6d3412..f0bd78b 100644 --- a/PBGraphCellInfo.m +++ b/PBGraphCellInfo.m @@ -10,7 +10,7 @@ @implementation PBGraphCellInfo -@synthesize lines, position, numColumns, refs, sign; +@synthesize lines, position, numColumns, sign; - (id)initWithPosition: (int) p andLines: (NSArray*) l { position = p;