MCPcopy Index your code
hub / github.com/apache/tomcat / release

Method release

java/org/apache/juli/logging/LogFactory.java:210–217  ·  view source on GitHub ↗

Release any internal references to previously created LogFactory instances that have been associated with the specified class loader (if any), after calling the instance method release() on each of them. @param classLoader ClassLoader for which to release the LogFactory

(ClassLoader classLoader)

Source from the content-addressed store, hash-verified

208 * @param classLoader ClassLoader for which to release the LogFactory
209 */
210 public static void release(ClassLoader classLoader) {
211 // JULI's log manager looks at the current classLoader so there is no
212 // need to use the passed in classLoader, the default implementation
213 // does not so call reset in that case will break things
214 if (!LogManager.getLogManager().getClass().getName().equals("java.util.logging.LogManager")) {
215 LogManager.getLogManager().reset();
216 }
217 }
218}

Callers 2

executeMethod · 0.95
clearReferencesMethod · 0.95

Calls 3

equalsMethod · 0.65
getNameMethod · 0.65
resetMethod · 0.65

Tested by

no test coverage detected