![JAR search and dependency download from the Maven repository](/logo.png)
com.newrelic.agent.modules.ClassLoaderUtilImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-module-util-java Show documentation
Show all versions of newrelic-module-util-java Show documentation
Multi-release jar for bootstrapping the Java Agent
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package com.newrelic.agent.modules;
public class ClassLoaderUtilImpl implements ClassLoaderUtil {
/**
* For Java {@literal <} 9, the concept of "platform class loader" didn't exist,
* so we always return null.
*/
@Override
public ClassLoader getPlatformClassLoaderOrNull() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy