Eliminate unused variable.

This commit is contained in:
Stephen Anthony 2022-04-04 13:46:41 -02:30
parent 2f10781b6d
commit ad850959c0
1 changed files with 1 additions and 2 deletions

View File

@ -58,7 +58,6 @@ static AboutBox *sharedInstance = nil;
NSString *versionString;
NSDictionary *infoDictionary;
CFBundleRef localInfoBundle;
NSDictionary *localInfoDict;
if (![[NSBundle mainBundle] loadNibNamed:@"AboutBox" owner:self topLevelObjects:nil])
{
@ -73,7 +72,7 @@ static AboutBox *sharedInstance = nil;
// Get the localized info dictionary (InfoPlist.strings)
localInfoBundle = CFBundleGetMainBundle();
localInfoDict = (NSDictionary *) CFBundleGetLocalInfoDictionary( localInfoBundle );
CFBundleGetLocalInfoDictionary(localInfoBundle);
// Setup the app name field
appName = @"Stella";