mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-09 01:48:34 +00:00
8197843: Remove unused method G1EvacuationRootClosures::create_root_closures_ext
Reviewed-by: sjohanss, eosterlund
This commit is contained in:
parent
4c0a72bf60
commit
4bb76c1b78
@ -111,11 +111,7 @@ public:
|
||||
};
|
||||
|
||||
G1EvacuationRootClosures* G1EvacuationRootClosures::create_root_closures(G1ParScanThreadState* pss, G1CollectedHeap* g1h) {
|
||||
G1EvacuationRootClosures* res = create_root_closures_ext(pss, g1h);
|
||||
if (res != NULL) {
|
||||
return res;
|
||||
}
|
||||
|
||||
G1EvacuationRootClosures* res = NULL;
|
||||
if (g1h->collector_state()->during_initial_mark_pause()) {
|
||||
if (ClassUnloadingWithConcurrentMark) {
|
||||
res = new G1InitialMarkClosures<G1MarkPromotedFromRoot>(g1h, pss);
|
||||
|
||||
@ -48,7 +48,6 @@ public:
|
||||
};
|
||||
|
||||
class G1EvacuationRootClosures : public G1RootClosures {
|
||||
static G1EvacuationRootClosures* create_root_closures_ext(G1ParScanThreadState* pss, G1CollectedHeap* g1h);
|
||||
public:
|
||||
// Flush any buffered state and deferred processing
|
||||
virtual void flush() = 0;
|
||||
|
||||
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "precompiled.hpp"
|
||||
#include "gc/g1/g1RootClosures.hpp"
|
||||
|
||||
G1EvacuationRootClosures* G1EvacuationRootClosures::create_root_closures_ext(G1ParScanThreadState* pss, G1CollectedHeap* g1h) {
|
||||
return NULL;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user