diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java index 38cdd7e0ee5..913c328216b 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java @@ -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);