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

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/util/KeyToSignature.java (-1 / +2 lines)
Lines 55-61 Link Here
55
	
55
	
56
	public void consumeCapture(int position) {
56
	public void consumeCapture(int position) {
57
		// behave as if it was a wildcard
57
		// behave as if it was a wildcard
58
		this.signature = ((KeyToSignature) this.arguments.get(0)).signature;
58
		this.signature.append('!');
59
		this.signature.append(((KeyToSignature) this.arguments.get(0)).signature);
59
	}
60
	}
60
		
61
		
61
	public void consumeLocalType(char[] uniqueKey) {
62
	public void consumeLocalType(char[] uniqueKey) {

Return to bug 120082