# HG changeset patch # User stooke # Date 1547663899 18000 # Node ID 8689c69d5c19045dc3d6c1e608dba78bfe2928f0 # Parent 4937bafbb2f88af330b3254e918baa9bb8e6c97a 8216578: Remove unused/obsolete method in JFR code Reviewed-by: mgronlun, mikael diff -r 4937bafbb2f8 -r 8689c69d5c19 src/share/vm/jfr/periodic/jfrOSInterface.cpp --- a/src/share/vm/jfr/periodic/jfrOSInterface.cpp Fri Jan 11 13:34:57 2019 +0100 +++ b/src/share/vm/jfr/periodic/jfrOSInterface.cpp Wed Jan 16 13:38:19 2019 -0500 @@ -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 @@ 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 @@ 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; }