1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Turn code completion back on. The PDOM isn't quite ready yet for content assist.

This commit is contained in:
Doug Schaefer 2006-04-04 16:55:31 +00:00
parent a9e3b1a8ea
commit 3799e8d91e

View file

@ -82,7 +82,7 @@ public class CCompletionProcessor2 implements IContentAssistProcessor {
IFile file = (IFile)workingCopy.getResource();
if (file != null) {
IPDOM pdom = CCorePlugin.getPDOMManager().getPDOM(workingCopy.getCProject());
IPDOM pdom = null; //CCorePlugin.getPDOMManager().getPDOM(workingCopy.getCProject());
ICodeReaderFactory readerFactory;
if (pdom != null)
readerFactory = pdom.getCodeReaderFactory(workingCopy);