From 2a6f59b652d2096e68b7452df8b8c7a352d474f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Sun, 1 Nov 2009 00:23:33 +0100 Subject: [PATCH] Synthesize repositoryPath for external access. --- PBGitConfig.h | 2 +- PBGitConfig.m | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/PBGitConfig.h b/PBGitConfig.h index 9875a3c..440d8e1 100644 --- a/PBGitConfig.h +++ b/PBGitConfig.h @@ -13,7 +13,7 @@ @interface PBGitConfig : NSObject { NSString *repositoryPath; } - +@property (copy) NSString *repositoryPath; - init; - initWithRepository:(NSString *)path; @end diff --git a/PBGitConfig.m b/PBGitConfig.m index 9166cc4..4bf3990 100644 --- a/PBGitConfig.m +++ b/PBGitConfig.m @@ -10,6 +10,7 @@ @implementation PBGitConfig +@synthesize repositoryPath; - init {