# HG changeset patch # User thartmann # Date 1480405694 -3600 # Node ID 0de1eb277c955984d4506765ecd6367baf89c456 # Parent 771199a0134932b6ca0d7408115abc32125998e1# Parent 601fb6316b0c197dbce32117147bce9957c3e2bd Merge diff -r 771199a01349 -r 0de1eb277c95 hotspot/src/share/vm/classfile/jimage.hpp --- a/hotspot/src/share/vm/classfile/jimage.hpp Tue Nov 29 08:16:15 2016 +0100 +++ b/hotspot/src/share/vm/classfile/jimage.hpp Tue Nov 29 08:48:14 2016 +0100 @@ -94,7 +94,7 @@ * Ex. * const char* package = (*JImagePackageToModule)(image, "java/lang"); * tty->print_cr(package); - * —> java.base + * -> java.base */ extern "C" const char * JIMAGE_PackageToModule(JImageFile* jimage, const char* package_name); @@ -126,7 +126,7 @@ /* - * JImageGetResource - Given an open image file (see JImageOpen), a resource’s + * JImageGetResource - Given an open image file (see JImageOpen), a resource's * location information (see JImageFindResource), a buffer of appropriate * size and the size, retrieve the bytes associated with the * resource. If the size is less than the resource size then the read is truncated. @@ -158,7 +158,7 @@ * Ex. * bool ctw_visitor(JImageFile* jimage, const char* module_name, const char* version, * const char* package, const char* name, const char* extension, void* arg) { - * if (strcmp(extension, “class”) == 0) { + * if (strcmp(extension, "class") == 0) { * char path[JIMAGE_MAX_PATH]; * Thread* THREAD = Thread::current(); * jio_snprintf(path, JIMAGE_MAX_PATH - 1, "/%s/%s", package, name);