aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/gc_implementation
diff options
context:
space:
mode:
authoriveresov <none@none>2009-06-08 16:14:19 -0700
committeriveresov <none@none>2009-06-08 16:14:19 -0700
commit0f1fb3de0f6521270df3fc3d9e1c2a527fd1f596 (patch)
tree666ccb64f198b1e17252d6357032b70c2941552e /src/share/vm/gc_implementation
parente4dba6d4035cd014138e3d990ab1f62423a0fffb (diff)
downloadjdk8u_hotspot-0f1fb3de0f6521270df3fc3d9e1c2a527fd1f596.tar.gz
6849122: G1: Typo introduced during implementation of the parallel refinement
Summary: Typo fix Reviewed-by: jcoomes
Diffstat (limited to 'src/share/vm/gc_implementation')
-rw-r--r--src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp b/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp
index 89f2be956..5cd82d795 100644
--- a/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp
+++ b/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp
@@ -111,7 +111,7 @@ ConcurrentG1Refine::~ConcurrentG1Refine() {
for (int i = 0; i < _n_threads; i++) {
delete _threads[i];
}
- FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads);
+ FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads);
}
}