# HG changeset patch # User dholmes # Date 1546032671 18000 # Node ID 6ac04cfbefdf3153d716da43694704ee05d0cc53 # Parent 95937fc2a05ee789038bfa4626249dac42b755c3 8215954: [testbug] Remove unnecessary casts in test/hotspot/gtest/threadHelper.inline.hpp Reviewed-by: dcubed diff -r 95937fc2a05e -r 6ac04cfbefdf 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() {