@@ -206,7 +206,6 @@ class ReferenceProcessor : public ReferenceDiscoverer {
206206 uint _next_id; // round-robin mod _num_queues counter in
207207 // support of work distribution
208208
209- bool _adjust_no_of_processing_threads; // allow dynamic adjustment of processing threads
210209 // For collectors that do not keep GC liveness information
211210 // in the object header, this field holds a closure that
212211 // helps the reference processor determine the reachability
@@ -368,8 +367,7 @@ class ReferenceProcessor : public ReferenceDiscoverer {
368367 uint mt_processing_degree = 1 ,
369368 bool mt_discovery = false , uint mt_discovery_degree = 1 ,
370369 bool atomic_discovery = true ,
371- BoolObjectClosure* is_alive_non_header = NULL ,
372- bool adjust_no_of_processing_threads = false );
370+ BoolObjectClosure* is_alive_non_header = NULL );
373371
374372 // RefDiscoveryPolicy values
375373 enum DiscoveryPolicy {
@@ -438,8 +436,6 @@ class ReferenceProcessor : public ReferenceDiscoverer {
438436 // debugging
439437 void verify_no_references_recorded () PRODUCT_RETURN;
440438 void verify_referent (oop obj) PRODUCT_RETURN;
441-
442- bool adjust_no_of_processing_threads () const { return _adjust_no_of_processing_threads; }
443439};
444440
445441// A subject-to-discovery closure that uses a single memory span to determine the area that
0 commit comments