View | Details | Raw Unified | Return to bug 360644
Collapse All | Expand All

(-)a/org.eclipse.jdt.core/buildnotes_jdt-core.html (-1 / +3 lines)
Lines 52-58 Link Here
52
<h2>What's new in this drop</h2>
52
<h2>What's new in this drop</h2>
53
53
54
<h3>Problem Reports Fixed</h3>
54
<h3>Problem Reports Fixed</h3>
55
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=358762">358762</a>
55
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=360644">360644</a>
56
Scope.isDefinedInSameUnit(ReferenceBinding) fails for a ParameterizedTypeBinding
57
<br><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=358762">358762</a>
56
NPE in JDT compiler
58
NPE in JDT compiler
57
59
58
<a name="v_C15"></a>
60
<a name="v_C15"></a>
(-)a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/Scope.java (-1 / +1 lines)
Lines 3043-3049 Link Here
3043
		// test that the enclosingType is not part of the compilation unit
3043
		// test that the enclosingType is not part of the compilation unit
3044
		SourceTypeBinding[] topLevelTypes = ((CompilationUnitScope) unitScope).topLevelTypes;
3044
		SourceTypeBinding[] topLevelTypes = ((CompilationUnitScope) unitScope).topLevelTypes;
3045
		for (int i = topLevelTypes.length; --i >= 0;)
3045
		for (int i = topLevelTypes.length; --i >= 0;)
3046
			if (topLevelTypes[i] == enclosingType)
3046
			if (topLevelTypes[i] == enclosingType.original())
3047
				return true;
3047
				return true;
3048
		return false;
3048
		return false;
3049
	}
3049
	}

Return to bug 360644