src/share/vm/gc_implementation/g1/g1RemSet.cpp

changeset 7659
38d6febe66af
parent 7658
c3fcc09c9239
child 7990
1f646daf0d67
     1.1 --- a/src/share/vm/gc_implementation/g1/g1RemSet.cpp	Thu Mar 26 13:19:32 2015 +0100
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1RemSet.cpp	Mon Dec 01 15:24:56 2014 +0100
     1.3 @@ -78,7 +78,6 @@
     1.4      _cards_scanned(NULL), _total_cards_scanned(0),
     1.5      _prev_period_summary()
     1.6  {
     1.7 -  _seq_task = new SubTasksDone(NumSeqTasks);
     1.8    guarantee(n_workers() > 0, "There should be some workers");
     1.9    _cset_rs_update_cl = NEW_C_HEAP_ARRAY(G1ParPushHeapRSClosure*, n_workers(), mtGC);
    1.10    for (uint i = 0; i < n_workers(); i++) {
    1.11 @@ -90,7 +89,6 @@
    1.12  }
    1.13  
    1.14  G1RemSet::~G1RemSet() {
    1.15 -  delete _seq_task;
    1.16    for (uint i = 0; i < n_workers(); i++) {
    1.17      assert(_cset_rs_update_cl[i] == NULL, "it should be");
    1.18    }

mercurial