Anomaly identified by the detector. Please review whether this anomaly corresponds to a misuse.
Finding:
finding-18
In File:
org/apache/commons/bcel6/generic/MONITOREXIT.java
In Method:
accept(Visitor)
Code with Finding:
class MONITOREXIT {
/**
* Call corresponding visitor method(s). The order is:
* Call visitor methods of implemented interfaces first, then
* call methods according to the class hierarchy in descending order,
* i.e., the most specific visitXXX() call comes last.
*
* @param v Visitor object
*/
@Override
public void accept( Visitor v ) {
v.visitExceptionThrower(this);
v.visitStackConsumer(this);
v.visitMONITOREXIT(this);
}
}