mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 09:34:38 +02:00
8200202: Remove unused _boot_modules_array and _platform_modules_array from classLoader.*
Remove unused _boot_modules_array and _platform_modules_array. Reviewed-by: coleenp
This commit is contained in:
parent
b7cb1a07e4
commit
7804f9b1e2
2 changed files with 0 additions and 8 deletions
|
@ -148,8 +148,6 @@ ClassPathEntry* ClassLoader::_last_append_entry = NULL;
|
||||||
#if INCLUDE_CDS
|
#if INCLUDE_CDS
|
||||||
ClassPathEntry* ClassLoader::_app_classpath_entries = NULL;
|
ClassPathEntry* ClassLoader::_app_classpath_entries = NULL;
|
||||||
ClassPathEntry* ClassLoader::_last_app_classpath_entry = NULL;
|
ClassPathEntry* ClassLoader::_last_app_classpath_entry = NULL;
|
||||||
GrowableArray<char*>* ClassLoader::_boot_modules_array = NULL;
|
|
||||||
GrowableArray<char*>* ClassLoader::_platform_modules_array = NULL;
|
|
||||||
SharedPathsMiscInfo* ClassLoader::_shared_paths_misc_info = NULL;
|
SharedPathsMiscInfo* ClassLoader::_shared_paths_misc_info = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -233,12 +233,6 @@ class ClassLoader: AllStatic {
|
||||||
// Last entry in linked list of appended ClassPathEntry instances
|
// Last entry in linked list of appended ClassPathEntry instances
|
||||||
static ClassPathEntry* _last_append_entry;
|
static ClassPathEntry* _last_append_entry;
|
||||||
|
|
||||||
// Array of module names associated with the boot class loader
|
|
||||||
CDS_ONLY(static GrowableArray<char*>* _boot_modules_array;)
|
|
||||||
|
|
||||||
// Array of module names associated with the platform class loader
|
|
||||||
CDS_ONLY(static GrowableArray<char*>* _platform_modules_array;)
|
|
||||||
|
|
||||||
// Info used by CDS
|
// Info used by CDS
|
||||||
CDS_ONLY(static SharedPathsMiscInfo * _shared_paths_misc_info;)
|
CDS_ONLY(static SharedPathsMiscInfo * _shared_paths_misc_info;)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue