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

Collapse All | Expand All

(-)CompletionEngine.java (-1 / +3 lines)
Lines 495-501 Link Here
495
							}
495
							}
496
						}
496
						}
497
					} else {
497
					} else {
498
						foundType.mustBeQualified = true;
498
						// don't require qualification for java.lang types
499
						if (!CharOperation.equals(foundType.packageName, CharOperation.concatWith(JAVA_LANG, '.')))
500
							foundType.mustBeQualified = true;
499
					}
501
					}
500
					proposeType(
502
					proposeType(
501
							packageName,
503
							packageName,

Return to bug 110596