src/share/vm/gc_implementation/parallelScavenge/psCompactionManager.cpp

changeset 3298
7913e93dca52
parent 3294
bca17e38de00
child 3900
d2a62e0f25eb
     1.1 --- a/src/share/vm/gc_implementation/parallelScavenge/psCompactionManager.cpp	Tue Nov 22 14:18:39 2011 -0800
     1.2 +++ b/src/share/vm/gc_implementation/parallelScavenge/psCompactionManager.cpp	Tue Nov 22 14:59:34 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -159,16 +159,6 @@
    1.11           (action() == ParCompactionManager::UpdateAndCopy);
    1.12  }
    1.13  
    1.14 -bool ParCompactionManager::should_verify_only() {
    1.15 -  assert(action() != NotValid, "Action is not set");
    1.16 -  return action() == ParCompactionManager::VerifyUpdate;
    1.17 -}
    1.18 -
    1.19 -bool ParCompactionManager::should_reset_only() {
    1.20 -  assert(action() != NotValid, "Action is not set");
    1.21 -  return action() == ParCompactionManager::ResetObjects;
    1.22 -}
    1.23 -
    1.24  void ParCompactionManager::region_list_push(uint list_index,
    1.25                                              size_t region_index) {
    1.26    region_list(list_index)->push(region_index);

mercurial