8200115: System property java.vm.vendor value includes quotation marks
authorerikj
Wed, 20 Jun 2018 09:38:17 -0700
changeset 50680 dd2ebc050e6e
parent 50679 58dac477766c
child 50683 fba6889d5635
8200115: System property java.vm.vendor value includes quotation marks Reviewed-by: tbell, asaha
src/hotspot/share/runtime/vm_version.cpp
--- a/src/hotspot/share/runtime/vm_version.cpp	Wed Jun 20 09:42:36 2018 -0700
+++ b/src/hotspot/share/runtime/vm_version.cpp	Wed Jun 20 09:38:17 2018 -0700
@@ -115,7 +115,7 @@
 
 const char* Abstract_VM_Version::vm_vendor() {
 #ifdef VENDOR
-  return XSTR(VENDOR);
+  return VENDOR;
 #else
   return "Oracle Corporation";
 #endif