Anomaly identified by the detector. Please review whether this anomaly corresponds to a misuse.
Finding:
finding-17
In File:
org/apache/commons/bcel6/generic/RETURN.java
In Method:
accept(Visitor)
Code with Finding:
class RETURN {
/**
* 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.visitTypedInstruction(this);
v.visitStackConsumer(this);
v.visitReturnInstruction(this);
v.visitRETURN(this);
}
}