6849122: G1: Typo introduced during implementation of the parallel refinement

Typo fix

Reviewed-by: jcoomes
This commit is contained in:
Igor Veresov 2009-06-08 16:14:19 -07:00
parent 9611174798
commit 307bb62ca5

View File

@ -111,7 +111,7 @@ ConcurrentG1Refine::~ConcurrentG1Refine() {
for (int i = 0; i < _n_threads; i++) { for (int i = 0; i < _n_threads; i++) {
delete _threads[i]; delete _threads[i];
} }
FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads); FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads);
} }
} }