Documentation tweaks.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21027 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2005-04-01 10:57:35 +00:00
parent 9fbaca5320
commit 304fce01db
4 changed files with 25 additions and 8 deletions

View file

@ -895,13 +895,13 @@ _bundle_load_callback(Class theClass, struct objc_category *theCategory)
if (!path || [path length] == 0)
{
NSLog(@"No path specified for bundle");
NSDebugMLog(@"No path specified for bundle");
[self dealloc];
return nil;
}
if ([path isAbsolutePath] == NO)
{
NSLog(@"WARNING: NSBundle -initWithPath: requires absolute path names!");
NSWarnMLog(@"NSBundle -initWithPath: requires absolute path names!");
path = [[[NSFileManager defaultManager] currentDirectoryPath]
stringByAppendingPathComponent: path];
}