Add clearKey(key)

This commit is contained in:
2025-02-28 19:42:40 -06:00
parent 99e282fcdf
commit 4b0d093a4a

View File

@ -247,6 +247,16 @@ public class Memoization<K, V>
/*******************************************************************************
**
*******************************************************************************/
public void clearKey(K key)
{
this.map.remove(key);
}
/*******************************************************************************
** Setter for timeoutSeconds
**