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

Collapse All | Expand All

(-)model/org/eclipse/jdt/core/Signature.java (-1 / +1 lines)
Lines 2547-2553 Link Here
2547
				if (innerTypeStart != -1 && !inAnonymousType && Character.isDigit(c)) {
2547
				if (innerTypeStart != -1 && !inAnonymousType && Character.isDigit(c)) {
2548
					inAnonymousType = true;
2548
					inAnonymousType = true;
2549
					buffer.setLength(innerTypeStart); // remove '.'
2549
					buffer.setLength(innerTypeStart); // remove '.'
2550
					buffer.insert(0, "new "); //$NON-NLS-1$
2550
					buffer.insert(checkpoint, "new "); //$NON-NLS-1$
2551
					buffer.append("(){}"); //$NON-NLS-1$
2551
					buffer.append("(){}"); //$NON-NLS-1$
2552
				}
2552
				}
2553
			 	if (!inAnonymousType)
2553
			 	if (!inAnonymousType)

Return to bug 180713