From 5f2c40bf66d37dac3547078ecf3a3f0d86848be0 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Thu, 14 Jun 2012 14:30:10 +0000 Subject: [Author: thomasvl] Fix wrong CPP gate. TBR=dmaclach --- Foundation/GTMNSFileManager+Path.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Foundation/GTMNSFileManager+Path.h') diff --git a/Foundation/GTMNSFileManager+Path.h b/Foundation/GTMNSFileManager+Path.h index 7c12158..80977b3 100644 --- a/Foundation/GTMNSFileManager+Path.h +++ b/Foundation/GTMNSFileManager+Path.h @@ -6,9 +6,9 @@ // Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy // of the License at -// +// // http://www.apache.org/licenses/LICENSE-2.0 -// +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the @@ -22,16 +22,16 @@ /// A few useful methods for dealing with paths. @interface NSFileManager (GMFileManagerPathAdditions) -#if GTM_MACOSX_SDK && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) +#if GTM_MACOS_SDK && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) -/// For the Unix-y at heart, this is "mkdir -p". It tries to create +/// For the Unix-y at heart, this is "mkdir -p". It tries to create /// the directory specified by |path|, and any intervening directories that /// are needed. Each directory that is created is created with |attributes| /// (see other NSFileManager doco for the details on |attributes|). /// /// If you are building for 10.5 or later, you should just use the new api: /// createDirectoryAtPath:withIntermediateDirectories:attributes:error: -/// +/// /// Also if you need more control over the creation of paths and their /// attributes, look into using GTMPath. /// @@ -47,7 +47,7 @@ - (BOOL)gtm_createFullPathToDirectory:(NSString *)path attributes:(NSDictionary *)attributes; -#endif // GTM_MACOSX_SDK && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) +#endif // GTM_MACOS_SDK && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) /// Return an the paths for all resources in |directoryPath| that have the /// |extension| file extension. @@ -57,7 +57,7 @@ /// If nil, all files are matched. /// directoryPath - the directory to look in. NOTE: Subdirectories are NOT /// traversed. -/// +/// /// Returns: /// An NSArray of absolute file paths that have |extension|. nil is returned /// if |directoryPath| doesn't exist or can't be opened, and returns an empty @@ -66,7 +66,7 @@ - (NSArray *)gtm_filePathsWithExtension:(NSString *)extension inDirectory:(NSString *)directoryPath; -/// Same as -filePathsWithExtension:inDirectory: except |extensions| is an +/// Same as -filePathsWithExtension:inDirectory: except |extensions| is an /// NSArray of extensions to match. /// - (NSArray *)gtm_filePathsWithExtensions:(NSArray *)extensions -- cgit v1.2.3