Tiny bugfix in urlhandle.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13567 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-05-01 16:39:50 +00:00
parent ffc4033747
commit befcec9bf6
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2002-05-01 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSURLHandle.m: ([URLHandleClassForURL:]) Fix to return most
recently registered class rather than first registered one.
Bug report via savannah
2002-04-30 Adam Fedor <fedor@gnu.org>
* Version: 1.3.2

View file

@ -137,6 +137,7 @@ static Class NSURLHandleClass = 0;
if ([found canInitWithURL: url] == YES)
{
c = (Class)found;
break; // Found it.
}
}
}