From 2fba2d028ec19c216f669ea017d379f27f05d739 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 3 Jun 2015 17:05:12 -0700 Subject: [PATCH] Bug 1170934 (part 2) - Fix the comment for PL_DHashTableRemove(). r=froydnj. --HG-- extra : rebase_source : 85258e2402a9f0b8fbeefd76c4e405cfb8eb887f --- xpcom/glue/pldhash.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xpcom/glue/pldhash.h b/xpcom/glue/pldhash.h index 30c34854f67b..56ec55292f10 100644 --- a/xpcom/glue/pldhash.h +++ b/xpcom/glue/pldhash.h @@ -495,9 +495,7 @@ PL_DHashTableAdd(PLDHashTable* aTable, const void* aKey); * * PL_DHashTableRemove(table, key); * - * If key's entry is found, it is cleared (via table->mOps->clearEntry) and - * the entry is marked so that PL_DHASH_ENTRY_IS_FREE(entry). This operation - * returns null unconditionally; you should ignore its return value. + * If key's entry is found, it is cleared (via table->mOps->clearEntry). */ void PL_DHASH_FASTCALL PL_DHashTableRemove(PLDHashTable* aTable, const void* aKey);