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

Collapse All | Expand All

(-)a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/TypeVariableBinding.java (-1 / +1 lines)
Lines 320-326 Link Here
320
				for (int i = 0, l = this.superInterfaces.length; i < l; i++)
320
				for (int i = 0, l = this.superInterfaces.length; i < l; i++)
321
					this.typeBits |= this.superInterfaces[i].typeBits;
321
					this.typeBits |= this.superInterfaces[i].typeBits;
322
		}
322
		}
323
		return (this.typeBits & bit) != 0;
323
		return ((this.typeBits != -1) && (this.typeBits & bit) != 0);
324
	}
324
	}
325
325
326
	/**
326
	/**

Return to bug 359362