Skip to content

Commit

Permalink
removed unnecessary variables from environment names
Browse files Browse the repository at this point in the history
  • Loading branch information
calebd committed Nov 30, 2010
1 parent ef39733 commit c39080a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hoptoadnotifier/HTNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
static HTNotifier * sharedNotifier = nil;

// extern strings
NSString * const HTNotifierVersion = @"1.1.1";
NSString * const HTNotifierVersion = @"1.1.2";
NSString * const HTNotifierBundleName = @"${BUNDLE}";
NSString * const HTNotifierBuildDate = @"${DATE}";
NSString * const HTNotifierBuildTime = @"${TIME}";
NSString * const HTNotifierBundleVersion = @"${VERSION}";
NSString * const HTNotifierDevelopmentEnvironment = @"Development ${DATE} ${TIME}";
NSString * const HTNotifierAdHocEnvironment = @"Ad Hoc ${DATE}";
NSString * const HTNotifierAppStoreEnvironment = @"App Store ${VERSION}";
NSString * const HTNotifierDevelopmentEnvironment = @"Development";
NSString * const HTNotifierAdHocEnvironment = @"Ad Hoc";
NSString * const HTNotifierAppStoreEnvironment = @"App Store";

#pragma mark -
#pragma mark c function prototypes
Expand Down

0 comments on commit c39080a

Please sign in to comment.