浏览代码

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.
tags/V_1_1_b5
jhugunin 21 年前
父节点
当前提交
d49c9fdf6d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java

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

正在加载...
取消
保存