diff src/share/vm/memory/freeList.cpp @ 10334:7c5a1b62f53d

8014971: Minor code cleanup of the freelist management Reviewed-by: jwilhelm, jmasa, tschatzl
author brutisso
date Wed, 22 May 2013 08:04:58 +0200
parents db9981fd3124
children bdfbb1fb19ca
line wrap: on
line diff
--- a/src/share/vm/memory/freeList.cpp	Tue May 21 11:30:14 2013 +0200
+++ b/src/share/vm/memory/freeList.cpp	Wed May 22 08:04:58 2013 +0200
@@ -55,17 +55,6 @@
 }
 
 template <class Chunk>
-FreeList<Chunk>::FreeList(Chunk* fc) :
-  _head(fc), _tail(fc)
-#ifdef ASSERT
-  , _protecting_lock(NULL)
-#endif
-{
-  _size         = fc->size();
-  _count        = 1;
-}
-
-template <class Chunk>
 void FreeList<Chunk>::link_head(Chunk* v) {
   assert_proper_lock_protection();
   set_head(v);