8295433: EpsilonHeap doesn't need to override post_initialize()

Reviewed-by: shade, tschatzl
This commit is contained in:
Xin Liu 2022-10-18 15:08:50 +00:00
parent e7375f9c52
commit 63867c4b52
2 changed files with 1 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2021, Red Hat, Inc. All rights reserved.
* Copyright (c) 2017, 2022, Red Hat, Inc. 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
@ -74,10 +74,6 @@ jint EpsilonHeap::initialize() {
return JNI_OK;
}
void EpsilonHeap::post_initialize() {
CollectedHeap::post_initialize();
}
void EpsilonHeap::initialize_serviceability() {
_pool = new EpsilonMemoryPool(this);
_memory_manager.add_pool(_pool);

View File

@ -69,7 +69,6 @@ public:
}
virtual jint initialize();
virtual void post_initialize();
virtual void initialize_serviceability();
virtual GrowableArray<GCMemoryManager*> memory_managers();