* Source/GSSet.m (-[GSMutableSet unionSet:]): Remove redundant

test.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19456 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2004-06-04 13:19:42 +00:00
parent 2581e79cf8
commit 68672643e7
2 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2004-06-03 David Ayers <d.ayers@inode.at>
* Source/GSSet.m (-[GSMutableSet unionSet:]): Remove redundant
test.
2004-06-03 Adam Fedor <fedor@gnu.org>
* Source/cifframe.h: Move ffi.h include to fix compile problem on

View file

@ -670,11 +670,6 @@ static Class mutableSetClass;
{
GSIMapNode node;
if (anObject == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"Tried to add nil to set"];
}
node = GSIMapNodeForKey(&map, (GSIMapKey)anObject);
if (node == 0)
{