completion bug flagged by compiler

This commit is contained in:
wisberg 2003-02-13 06:16:44 +00:00
parent ffea59d6b6
commit 761e0895a4
2 changed files with 2 additions and 2 deletions

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;

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() {