Browse Source

completion bug flagged by compiler

tags/V_1_1_b5
wisberg 21 years ago
parent
commit
761e0895a4

+ 1
- 1
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/Proceed.java View File

@@ -35,7 +35,7 @@ public class Proceed extends MessageSend {

this.nameSourcePosition = parent.nameSourcePosition;
this.receiverType = parent.receiverType;
this.qualifyingType = qualifyingType;
this.qualifyingType = parent.qualifyingType;
this.sourceStart = parent.sourceStart;
this.sourceEnd = parent.sourceEnd;

+ 1
- 1
org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java View File

@@ -55,7 +55,7 @@ public class CodeSnippetSkeleton implements IBinaryType, EvaluationConstants {
this.selector = selector;
this.methodDescriptor = methodDescriptor;
this.exceptionTypeNames = exceptionTypeNames;
this.isConstructor = this.isConstructor;
this.isConstructor = isConstructor;
}
public char[][] getExceptionTypeNames() {

Loading…
Cancel
Save