### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java,v retrieving revision 1.6 diff -u -r1.6 InternalCompletionProposal.java --- codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java 22 Jun 2005 13:18:35 -0000 1.6 +++ codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java 10 Nov 2005 18:28:16 -0000 @@ -96,12 +96,7 @@ // TODO (david) shouldn't it be NameLookup.ACCEPT_ALL ? type = this.nameLookup.findType(new String(tName), false, NameLookup.ACCEPT_CLASSES & NameLookup.ACCEPT_INTERFACES); if(type instanceof BinaryType){ - if(((BinaryType)type).getSourceMapper() != null) { - this.completionEngine.typeCache.put(tName, type); - } else { - this.completionEngine.typeCache.put(tName, NO_ATTACHED_SOURCE); - type = null; - } + this.completionEngine.typeCache.put(tName, type); } else { type = null; }