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

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding.java (+1 lines)
Lines 76-81 Link Here
76
	System.arraycopy(this.methods, 0, temp, 0, this.methods.length);
76
	System.arraycopy(this.methods, 0, temp, 0, this.methods.length);
77
	temp[this.methods.length] = defaultAbstract;
77
	temp[this.methods.length] = defaultAbstract;
78
	this.methods = temp;
78
	this.methods = temp;
79
	ReferenceBinding.sortMethods(this.methods, 0, this.methods.length - 1);
79
}
80
}
80
public void addDefaultAbstractMethods() {
81
public void addDefaultAbstractMethods() {
81
	if ((this.tagBits & TagBits.KnowsDefaultAbstractMethods) != 0) return;
82
	if ((this.tagBits & TagBits.KnowsDefaultAbstractMethods) != 0) return;

Return to bug 137744