Description:
MNU detects if a method is declared with private or default access, but will not be called during program execution. Such a method is called only by methods that are also never executed.
Example:
class A {
private void f() {
g();
}
private void g() {
f();
}
}