提交 94b15d43 编写于 作者: S stooke

8216578: Remove unused/obsolete method in JFR code

Reviewed-by: mgronlun, mikael
上级 561accde
/*
* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
......@@ -70,9 +70,6 @@ class JfrOSInterface::JfrOSInterfaceImpl : public JfrCHeapObj {
SystemProcessInterface* _system_process_interface;
NetworkPerformanceInterface* _network_performance_interface;
// stub helper
void functionality_not_implemented(char** str) const;
JfrOSInterfaceImpl();
bool initialize();
~JfrOSInterfaceImpl();
......@@ -178,15 +175,6 @@ int JfrOSInterface::JfrOSInterfaceImpl::os_version(char** os_version) const {
return OS_OK;
}
void JfrOSInterface::JfrOSInterfaceImpl::functionality_not_implemented(char** str) const {
assert(str != NULL, "address to string is NULL!");
const char* not_impl = "Functionality_not_implemented";
const size_t not_impl_len = strlen(not_impl);
*str = NEW_C_HEAP_ARRAY(char, not_impl_len+1, mtTracing);
strncpy(*str, not_impl, not_impl_len);
(*str)[not_impl_len] = '\0';
}
JfrOSInterface::JfrOSInterface() {
_impl = NULL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册