comparison src/share/vm/classfile/classLoaderExt.hpp @ 20376:bb239308be67

8056971: Minor class loading clean-up Summary: Misplacement of #if INCLUE_CDS, typos, unnecessary C string duplication Reviewed-by: dholmes, ccheung
author iklam
date Tue, 02 Sep 2014 14:02:57 -0700
parents 6e0cb14ce59b
children 4cb90023bf2b
comparison
equal deleted inserted replaced
20375:6e0cb14ce59b 20376:bb239308be67
57 } 57 }
58 } 58 }
59 }; 59 };
60 60
61 61
62 static void add_class_path_entry(char* path, bool check_for_duplicates, 62 static void add_class_path_entry(const char* path, bool check_for_duplicates,
63 ClassPathEntry* new_entry) { 63 ClassPathEntry* new_entry) {
64 ClassLoader::add_to_list(new_entry); 64 ClassLoader::add_to_list(new_entry);
65 } 65 }
66 static void setup_search_paths() {} 66 static void setup_search_paths() {}
67 }; 67 };
68 68