}
public List<OpcodeNodeMethod> getOtherInstancePrivateCallList() {
final List<OpcodeNodeMethod> list = new LinkedList<OpcodeNodeMethod>();
for (OpcodeNodeMethod opcodeNodeMethod : ownedMethodCallOfOtherInstanceList) {
final MethodId key =
/**/new MethodId(opcodeNodeMethod.getMethodName(),// NOPMD
opcodeNodeMethod.getDesc());
if (privateMethodSet.contains(key)) {
list.add(opcodeNodeMethod);
}
}