From 8e1b521b9c52db3d80f69eb7acbddc36d49a8da5 Mon Sep 17 00:00:00 2001 From: CaS Date: Thu, 31 Jan 2002 19:19:12 +0000 Subject: [PATCH] don't check too muchCVS: ---------------------------------------------------------------------- git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12352 72102866-910b-0410-8b05-ffd578937521 --- Source/NSMapTable.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/NSMapTable.m b/Source/NSMapTable.m index 6435308e7..f64541f73 100644 --- a/Source/NSMapTable.m +++ b/Source/NSMapTable.m @@ -345,11 +345,6 @@ NSMapGet(NSMapTable *table, const void *key) NSWarnLog(@"Nul table argument supplied"); return 0; } - if (key == 0) - { - NSWarnLog(@"Nul key argument supplied"); - return 0; - } n = GSIMapNodeForKey((GSIMapTable)table, (GSIMapKey)key); if (n == 0) {