View by Classes

Findings - Overview

warning Classloaders should only be created inside doPrivileged block (Findbugs)

org.jcoderz.phoenix.report.JDepend.<static initializer>() creates a org.apache.bcel.util.ClassLoader classloader, which should be performed within a doPrivileged block

Further info on the wiki.

This code creates a classloader, which requires a security manager. If this code will be granted security permissions, but might be invoked by code that does not have security permissions, then the classloader creation needs to occur inside a doPrivileged block.

1org.jcoderz.phoenix.report.JDepend
 [55]