Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de76ea commit 4851e76Copy full SHA for 4851e76
src/net/sf/j2s/core/astvisitors/DependencyASTVisitor.java
@@ -956,6 +956,10 @@ public boolean visit(MethodInvocation node) {
956
optionals.add(qn);
957
}
958
959
+ //sgurin: fix for bug http://sourceforge.net/tracker/?func=detail&aid=3037341&group_id=155436&atid=795800
960
+ String methodOwnerClassName = resolveMethodBinding.getDeclaringClass().getQualifiedName();
961
+ if(methodOwnerClassName!=null && !methodOwnerClassName.equals(""))
962
+ requires.add(methodOwnerClassName);
963
964
return super.visit(node);
965
0 commit comments