@@ -221,7 +221,7 @@ void JfrDCmd::execute(DCmdSource source, TRAPS) {
221
221
return ;
222
222
}
223
223
if (source == DCmd_Source_Internal && _args != nullptr && strcmp (_args, " help" ) == 0 ) {
224
- print_java_help (" printStartupHelp " );
224
+ print_java_help (" getStartupHelp " );
225
225
vm_exit (0 );
226
226
}
227
227
@@ -246,17 +246,17 @@ void JfrDCmd::execute(DCmdSource source, TRAPS) {
246
246
handle_dcmd_result (output (), result.get_oop (), source, THREAD);
247
247
}
248
248
249
- void JfrDCmd::print_java_help (const char * help_method ) const {
249
+ void JfrDCmd::print_java_help (const char * get_help_method ) const {
250
250
static const char signature[] = " ()[Ljava/lang/String;" ;
251
251
JavaThread* thread = JavaThread::current ();
252
252
JavaValue result (T_OBJECT);
253
- JfrJavaArguments printHelp (&result, javaClass (), help_method , signature, thread);
254
- invoke (printHelp , thread);
253
+ JfrJavaArguments java_method (&result, javaClass (), get_help_method , signature, thread);
254
+ invoke (java_method , thread);
255
255
handle_dcmd_result (output (), result.get_oop (), DCmd_Source_MBean, thread);
256
256
}
257
257
258
258
void JfrDCmd::print_help (const char * name) const {
259
- print_java_help (" printHelp " );
259
+ print_java_help (" getHelp " );
260
260
}
261
261
262
262
static void initialize_dummy_descriptors (GrowableArray<DCmdArgumentInfo*>* array) {
0 commit comments