Minor tidyup for clearer indentation

This commit is contained in:
Richard Frith-Macdonald 2020-11-19 08:33:20 -05:00
parent 8178e52806
commit aa0beb0758

View file

@ -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
{