mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
([Set -removeElement:ifAbsentCall:]): Fix typo; method renamed from
-removeElement:ifAbsent:. (Reported by Albert Mietus <albert@gamp.hacom.nl>) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@679 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
49ab05a3a4
commit
572a7a1c45
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Implementation for Objective-C Set collection object
|
||||
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993,1994, 1995, 1996 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -215,7 +215,7 @@
|
|||
|
||||
// REMOVING AND REPLACING;
|
||||
|
||||
- (elt) removeElement: (elt)oldElement ifAbsent: (elt(*)(arglist_t))excFunc
|
||||
- (elt) removeElement: (elt)oldElement ifAbsentCall: (elt(*)(arglist_t))excFunc
|
||||
{
|
||||
if (coll_hash_value_for_key(_contents_hash, oldElement).void_ptr_u == 0)
|
||||
coll_hash_remove(_contents_hash, oldElement);
|
||||
|
|
Loading…
Reference in a new issue