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 fc6543e commit 460b46dCopy full SHA for 460b46d
src/net/sf/j2s/core/astvisitors/MethodReferenceASTVisitor.java
@@ -33,7 +33,7 @@ public class MethodReferenceASTVisitor extends ASTVisitor {
33
34
private MethodReferenceASTVisitor(String methodSignature) {
35
super();
36
- this.methodSignature = methodSignature;
+ this.methodSignature = methodSignature.replaceAll("<[^>]+>", "");
37
}
38
39
public static boolean checkReference(ASTNode node, String methodSignature) {
0 commit comments