8078341: Remove the unused PSParallelCompact::_updated_int_array_klass_obj

Reviewed-by: ehelin, tschatzl
This commit is contained in:
Stefan Karlsson 2015-04-22 09:09:42 +02:00
parent 4357348f6f
commit 9631881fe3
2 changed files with 0 additions and 7 deletions

View File

@ -108,7 +108,6 @@ SpaceInfo PSParallelCompact::_space_info[PSParallelCompact::last_space_id];
bool PSParallelCompact::_print_phases = false;
ReferenceProcessor* PSParallelCompact::_ref_processor = NULL;
Klass* PSParallelCompact::_updated_int_array_klass_obj = NULL;
double PSParallelCompact::_dwl_mean;
double PSParallelCompact::_dwl_std_dev;

View File

@ -982,9 +982,6 @@ class PSParallelCompact : AllStatic {
// Reference processing (used in ...follow_contents)
static ReferenceProcessor* _ref_processor;
// Updated location of intArrayKlassObj.
static Klass* _updated_int_array_klass_obj;
// Values computed at initialization and used by dead_wood_limiter().
static double _dwl_mean;
static double _dwl_std_dev;
@ -1181,9 +1178,6 @@ class PSParallelCompact : AllStatic {
// Used to add tasks
static GCTaskManager* const gc_task_manager();
static Klass* updated_int_array_klass_obj() {
return _updated_int_array_klass_obj;
}
// Marking support
static inline bool mark_obj(oop obj);