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

fixed bug # 48063

This commit is contained in:
David Inglis 2003-12-04 15:00:39 +00:00
parent e43eb360d1
commit fffc3b5110
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-12-04 David Inglis
Fixed bug# 48063
* src/org/eclipse/cdt/core/CCorePlugin.java
2003-12-03 Hoda Amer
Content Assist work :Moved CompletionEngine out of CDT core

View file

@ -698,7 +698,7 @@ public class CCorePlugin extends Plugin {
if (project != null) {
try {
ICDescriptor desc = (ICDescriptor) getCProjectDescription(project);
ICExtensionReference[] extensions = desc.get(BUILD_SCANNER_INFO_UNIQ_ID);
ICExtensionReference[] extensions = desc.get(BUILD_SCANNER_INFO_UNIQ_ID, true);
if (extensions.length > 0)
provider = (IScannerInfoProvider) extensions[0].createExtension();
} catch (CoreException e) {