8216578: Remove unused/obsolete method in JFR code

Reviewed-by: mgronlun, mikael
This commit is contained in:
Simon Tooke 2019-01-16 13:38:19 -05:00
parent 74f9ec23e3
commit 8ec2db0ad9

View File

@ -1,5 +1,5 @@
/*
* 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;
}