src/hotspot/share/classfile/classLoaderExt.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File open Cdiff src/hotspot/share/classfile/classLoaderExt.cpp

src/hotspot/share/classfile/classLoaderExt.cpp

Print this page

        

*** 32,41 **** --- 32,42 ---- #include "classfile/klassFactory.hpp" #include "classfile/modules.hpp" #include "classfile/sharedPathsMiscInfo.hpp" #include "classfile/systemDictionaryShared.hpp" #include "classfile/vmSymbols.hpp" + #include "logging/log.hpp" #include "memory/allocation.inline.hpp" #include "memory/filemap.hpp" #include "memory/resourceArea.hpp" #include "oops/instanceKlass.hpp" #include "oops/oop.inline.hpp"
*** 173,183 **** if (manifest == NULL) { return; } if (strstr(manifest, "Extension-List:") != NULL) { ! tty->print_cr("-Xshare:dump does not support Extension-List in JAR manifest: %s", entry->name()); vm_exit(1); } char* cp_attr = get_class_path_attr(entry->name(), manifest, manifest_size); --- 174,184 ---- if (manifest == NULL) { return; } if (strstr(manifest, "Extension-List:") != NULL) { ! log_error(cds)("-Xshare:dump does not support Extension-List in JAR manifest: %s", entry->name()); vm_exit(1); } char* cp_attr = get_class_path_attr(entry->name(), manifest, manifest_size);
src/hotspot/share/classfile/classLoaderExt.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File