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:
parent
e43eb360d1
commit
fffc3b5110
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue