From d49c9fdf6d4c334c2a0e6faa454a115616ea0712 Mon Sep 17 00:00:00 2001 From: jhugunin Date: Thu, 13 Feb 2003 19:23:15 +0000 Subject: [PATCH] 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. --- .../eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.39.5