From e7c655ac4b223fb0f3c78179c55178f2f5889b9e Mon Sep 17 00:00:00 2001 From: CaS Date: Tue, 21 Jun 2005 12:57:20 +0000 Subject: [PATCH] Add a comment explaining last change. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21337 72102866-910b-0410-8b05-ffd578937521 --- Source/NSBundle.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/NSBundle.m b/Source/NSBundle.m index cb03981a2..e09728295 100644 --- a/Source/NSBundle.m +++ b/Source/NSBundle.m @@ -894,6 +894,12 @@ _bundle_load_callback(Class theClass, struct objc_category *theCategory) [self dealloc]; return nil; } + + /* + * Make sure we have an absolute and fully expanded path, + * so we can manipulate it without having to worry about + * details like that throughout the code. + */ if ([path isAbsolutePath] == NO) { NSWarnMLog(@"NSBundle -initWithPath: requires absolute path names!");