aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jdt.core
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-02-13 19:23:15 +0000
committerjhugunin <jhugunin>2003-02-13 19:23:15 +0000
commitd49c9fdf6d4c334c2a0e6faa454a115616ea0712 (patch)
tree80ccfa80514a73707644d5e8a3ec60706a1999a0 /org.eclipse.jdt.core
parent9255a481ea24fb7ef820b5f6b9129486c12f694e (diff)
downloadaspectj-d49c9fdf6d4c334c2a0e6faa454a115616ea0712.tar.gz
aspectj-d49c9fdf6d4c334c2a0e6faa454a115616ea0712.zip
undoing what was almost certainly a correct bug fix.
This bug fix is not needed by ajc, and making the change to the jdt.core code will make future synchronization more difficult.
Diffstat (limited to 'org.eclipse.jdt.core')
-rw-r--r--org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java b/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
index 532ec4644..4d083b165 100644
--- a/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
+++ b/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
@@ -55,7 +55,7 @@ public class CodeSnippetSkeleton implements IBinaryType, EvaluationConstants {
this.selector = selector;
this.methodDescriptor = methodDescriptor;
this.exceptionTypeNames = exceptionTypeNames;
- this.isConstructor = isConstructor;
+ this.isConstructor = this.isConstructor;
}
public char[][] getExceptionTypeNames() {