View | Details | Raw Unified | Return to bug 258905 | Differences between
and this patch

Collapse All | Expand All

(-)dom/org/eclipse/jdt/core/dom/DefaultBindingResolver.java (+2 lines)
Lines 1682-1687 Link Here
1682
				typeBinding = this.getTypeBinding(this.scope.getType(TypeConstants.JAVA_LANG_RUNTIMEEXCEPTION, 3));
1682
				typeBinding = this.getTypeBinding(this.scope.getType(TypeConstants.JAVA_LANG_RUNTIMEEXCEPTION, 3));
1683
			} else if ("java.lang.Error".equals(name)) {//$NON-NLS-1$
1683
			} else if ("java.lang.Error".equals(name)) {//$NON-NLS-1$
1684
				typeBinding = this.getTypeBinding(this.scope.getType(TypeConstants.JAVA_LANG_ERROR, 3));
1684
				typeBinding = this.getTypeBinding(this.scope.getType(TypeConstants.JAVA_LANG_ERROR, 3));
1685
			} else if ("java.lang.AssertionError".equals(name)) {//$NON-NLS-1$
1686
				typeBinding = this.getTypeBinding(this.scope.getType(TypeConstants.JAVA_LANG_ASSERTIONERROR, 3));
1685
			} else if ("java.lang.Class".equals(name)) {//$NON-NLS-1$
1687
			} else if ("java.lang.Class".equals(name)) {//$NON-NLS-1$
1686
				typeBinding = this.getTypeBinding(this.scope.getJavaLangClass());
1688
				typeBinding = this.getTypeBinding(this.scope.getJavaLangClass());
1687
			} else if ("java.lang.Cloneable".equals(name)) {//$NON-NLS-1$
1689
			} else if ("java.lang.Cloneable".equals(name)) {//$NON-NLS-1$

Return to bug 258905