src/share/vm/utilities/hashtable.hpp

changeset 3875
246d977b51f2
parent 3865
e9140bf80b4a
child 3900
d2a62e0f25eb
     1.1 --- a/src/share/vm/utilities/hashtable.hpp	Fri Jun 22 15:39:16 2012 -0700
     1.2 +++ b/src/share/vm/utilities/hashtable.hpp	Mon Jun 25 21:33:35 2012 -0400
     1.3 @@ -217,12 +217,7 @@
     1.4    }
     1.5  
     1.6    // Free the buckets in this hashtable
     1.7 -  void free_buckets() {
     1.8 -    if (NULL != _buckets) {
     1.9 -      FREE_C_HEAP_ARRAY(HashtableBucket, _buckets);
    1.10 -      _buckets = NULL;
    1.11 -    }
    1.12 -  }
    1.13 +  void free_buckets();
    1.14  
    1.15  public:
    1.16    int table_size() { return _table_size; }

mercurial