mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Minor tidyup for clearer indentation
This commit is contained in:
parent
8178e52806
commit
aa0beb0758
1 changed files with 5 additions and 2 deletions
|
@ -5807,8 +5807,11 @@ static NSFileManager *fm = nil;
|
|||
locale: (id)locale
|
||||
{
|
||||
GS_RANGE_CHECK(compareRange, [self length]);
|
||||
if (string == nil)
|
||||
[NSException raise: NSInvalidArgumentException format: @"compare with nil"];
|
||||
if (nil == string)
|
||||
{
|
||||
[NSException raise: NSInvalidArgumentException
|
||||
format: @"compare with nil"];
|
||||
}
|
||||
|
||||
#if GS_USE_ICU == 1
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue