Index: trunk/psLib/src/sysUtils/psHash.h
===================================================================
--- trunk/psLib/src/sysUtils/psHash.h	(revision 1013)
+++ trunk/psLib/src/sysUtils/psHash.h	(revision 1073)
@@ -10,6 +10,6 @@
  *  @author George Gusciora, MHPCC
  *   
- *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-12 05:50:01 $
+ *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-23 23:00:15 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -45,25 +45,18 @@
                    );
 
-/// Free hash buckets from table.
-void psHashFree(psHash *table,               ///< hash table to be freed
-                void (*itemFree)(void *item) ///< how to free hashed data; or NULL
-               );
-
 /// Insert entry into table.
 void *psHashInsert(psHash *table,               ///< table to insert in
                    const char *key,             ///< key to use
-                   void *data,                  ///< data to insert
-                   void (*itemFree)(void *item) ///< how to free hashed data; or NULL
+                   void *data                   ///< data to insert
                   );
 
 /// Lookup key in table.
-void *psHashLookup(psHash *table, ///< table to lookup key in
-                   const char *key ///< key to lookup
+void *psHashLookup(psHash *table,      ///< table to lookup key in
+                   const char *key     ///< key to lookup
                   );
 
 /// Remove key from table.
-void *psHashRemove(psHash *table, ///< table to lookup key in
-                   const char *key, ///< key to lookup
-                   void (*itemFree)(void *item) ///< how to free hashed data; or NULL
+void *psHashRemove(psHash *table,      ///< table to lookup key in
+                   const char *key     ///< key to lookup
                   );
 
