diff -r 6702da6b6082 -r 7c5a1b62f53d src/share/vm/memory/freeList.cpp --- 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 -FreeList::FreeList(Chunk* fc) : - _head(fc), _tail(fc) -#ifdef ASSERT - , _protecting_lock(NULL) -#endif -{ - _size = fc->size(); - _count = 1; -} - -template void FreeList::link_head(Chunk* v) { assert_proper_lock_protection(); set_head(v);