comparison src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp @ 799:f89cf529c3c7

6849122: G1: Typo introduced during implementation of the parallel refinement Summary: Typo fix Reviewed-by: jcoomes
author iveresov
date Mon, 08 Jun 2009 16:14:19 -0700
parents 215f81b4d9b3
children bd02caa94611
comparison
equal deleted inserted replaced
798:fe1574da39fc 799:f89cf529c3c7
109 } 109 }
110 if (_threads != NULL) { 110 if (_threads != NULL) {
111 for (int i = 0; i < _n_threads; i++) { 111 for (int i = 0; i < _n_threads; i++) {
112 delete _threads[i]; 112 delete _threads[i];
113 } 113 }
114 FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads); 114 FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads);
115 } 115 }
116 } 116 }
117 117
118 void ConcurrentG1Refine::threads_do(ThreadClosure *tc) { 118 void ConcurrentG1Refine::threads_do(ThreadClosure *tc) {
119 if (_threads != NULL) { 119 if (_threads != NULL) {