mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Get rid of bogus warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17057 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8cbd3a5b00
commit
dacf96257f
2 changed files with 9 additions and 3 deletions
|
@ -1,7 +1,11 @@
|
|||
2003-06-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSBundle.m: Don't NSLog when we can't find a localizable
|
||||
file ... log only when bundle debugging is turned on.
|
||||
|
||||
2003-06-27 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSPipe.m: Fix descriptor leak ... close on dealloc
|
||||
* Source/NSTask.m: Don't bother to close pipes.
|
||||
|
||||
2003-06-25 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
|
|
|
@ -1502,8 +1502,10 @@ _bundle_load_callback(Class theClass, struct objc_category *theCategory)
|
|||
NS_ENDHANDLER
|
||||
}
|
||||
else
|
||||
NSLog(@"Failed to locate strings file %@", tableName);
|
||||
|
||||
{
|
||||
NSDebugMLLog(@"NSBundle", @"Failed to locate strings file %@",
|
||||
tableName);
|
||||
}
|
||||
/*
|
||||
* If we couldn't found and parsed the strings table, we put it in
|
||||
* the cache of strings tables in this bundle, otherwise we will just
|
||||
|
|
Loading…
Reference in a new issue