Fixed code standard issues.

This commit is contained in:
Malte Tancred
2012-06-12 17:44:17 +02:00
parent 56c0f7f6f1
commit 52fff2056b
+6 -3
View File
@@ -469,10 +469,13 @@ NSString * const XCCListeningStartNotification = @"XCCListeningStartNotification
}
/*!
Create the xCodeSupport/Sources folder if necessary.
Create the .xCodeSupport/Sources folder if necessary.
*/
- (void)createXcodeSupportProjectSourcesDirIfNecessary {
if ([fm fileExistsAtPath:[XCodeSupportProjectSources path]]) return;
- (void)createXcodeSupportProjectSourcesDirIfNecessary
{
if ([fm fileExistsAtPath:[XCodeSupportProjectSources path]])
return;
DLog(@"Creating source folder %@", [XCodeSupportProjectSources path]);
[fm createDirectoryAtPath:[XCodeSupportProjectSources path] withIntermediateDirectories:YES attributes:nil error:nil];
}