8246622: Remove CollectedHeap::print_gc_threads_on()

Reviewed-by: stefank, tschatzl, sjohanss
This commit is contained in:
Per Lidén 2020-06-05 15:22:53 +02:00
parent c66bef0289
commit 06e47d05b6
27 changed files with 31 additions and 127 deletions

View file

@ -188,12 +188,6 @@ class AbstractWorkGang : public CHeapObj<mtInternal> {
// Debugging.
const char* name() const { return _name; }
// Printing
void print_worker_threads_on(outputStream *st) const;
void print_worker_threads() const {
print_worker_threads_on(tty);
}
protected:
virtual AbstractGangWorker* allocate_worker(uint which) = 0;
};