Browse Source

Fixed signature for constructor nodes to look the same as it does for methods.

tags/V1_5_0M2
aclement 19 years ago
parent
commit
826e7ba5f3

+ 1
- 1
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java View File

@@ -627,7 +627,7 @@ public class AsmHierarchyBuilder extends ASTVisitor {
argumentsSignature.append("(");
if (constructorDeclaration.arguments!=null) {
for (int i = 0;i<constructorDeclaration.arguments.length;i++) {
argumentsSignature.append(constructorDeclaration.arguments[i]);
argumentsSignature.append(constructorDeclaration.arguments[i].type);
if (i+1<constructorDeclaration.arguments.length) argumentsSignature.append(",");
}
}

Loading…
Cancel
Save