8215954: [testbug] Remove unnecessary casts in test/hotspot/gtest/threadHelper.inline.hpp
authordholmes
Fri, 28 Dec 2018 16:31:11 -0500
changeset 53105 6ac04cfbefdf
parent 53104 95937fc2a05e
child 53106 6c3407eee455
8215954: [testbug] Remove unnecessary casts in test/hotspot/gtest/threadHelper.inline.hpp Reviewed-by: dcubed
test/hotspot/gtest/threadHelper.inline.hpp
--- a/test/hotspot/gtest/threadHelper.inline.hpp	Fri Dec 21 14:42:08 2018 +0100
+++ b/test/hotspot/gtest/threadHelper.inline.hpp	Fri Dec 28 16:31:11 2018 -0500
@@ -51,7 +51,7 @@
   VMThreadBlocker() {}
   virtual ~VMThreadBlocker() {}
   const char* get_thread_name_string(char* buf, int buflen) const {
-    return (char*) "VMThreadBlocker";
+    return "VMThreadBlocker";
   }
   void run() {
     this->set_thread_state(_thread_in_vm);
@@ -95,7 +95,7 @@
   virtual ~JavaTestThread() {}
 
   const char* get_thread_name_string(char* buf, int buflen) const {
-    return (char*) "JavaTestThread";
+    return "JavaTestThread";
   }
 
   void pre_run() {